am 245b2da1: am 754ebaa9: Merge "updater: Skip empty lines in the transfer list file."

* commit '245b2da1711db8a9b8e333395d68235df5163483':
  updater: Skip empty lines in the transfer list file.
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp
index ddb474f..54f2b6e 100644
--- a/updater/blockimg.cpp
+++ b/updater/blockimg.cpp
@@ -1428,6 +1428,10 @@
     // Subsequent lines are all individual transfer commands
     for (auto it = lines.cbegin() + start; it != lines.cend(); it++) {
         const std::string& line_str(*it);
+        if (line_str.empty()) {
+            continue;
+        }
+
         char* line = strdup(line_str.c_str());
         params.cmdname = strtok_r(line, " ", &params.cpos);