Skip the = or \n before grabbing Zip_File.

Change-Id: I0454f8fc3cbe037fac63ef5861f8f373e4654d49
This commit is contained in:
Kevin Steck
2013-10-24 20:40:22 +01:00
committed by Gerrit Code Review
parent f4766921d4
commit 23f2c39906
+3
View File
@@ -157,6 +157,9 @@ int main(int argc, char **argv) {
index2 = 0;
while (*ptr != '=' && *ptr != '\n')
ptr++;
// skip the = before grabbing Zip_File
while (*ptr == '=')
ptr++;
if (*ptr) {
Zip_File = ptr;
} else