Merge "Fix extract_utils when not using blob sections" into android-8.0
diff --git a/build/tools/extract_utils.sh b/build/tools/extract_utils.sh
index dd195ee..19645f9 100755
--- a/build/tools/extract_utils.sh
+++ b/build/tools/extract_utils.sh
@@ -796,7 +796,11 @@
         exit 1
     fi
 
-    parse_file_list "$1" "$3"
+    if [ -z "$3" ]; then
+        parse_file_list "$1"
+    else
+        parse_file_list "$1" "$3"
+    fi
 
     # Allow failing, so we can try $DEST and/or $FILE
     set +e