"...android_kernel_samsung_matisse.git" did not exist on "fa3a6cb4a6feacd712ca58fd1c6e99b33fde5d5d"
Commit 23f2c399 authored by Kevin Steck's avatar Kevin Steck Committed by Gerrit Code Review
Browse files

Skip the = or \n before grabbing Zip_File.

Change-Id: I0454f8fc3cbe037fac63ef5861f8f373e4654d49
parent f4766921
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment