Fix bad loop end condition for unzip.

This commit is contained in:
Xenosoz Hwang
2013-02-24 10:40:21 -08:00
parent a311e60107
commit 04605b7967
+1 -1
View File
@@ -242,7 +242,7 @@
}
currentFileNumber++;
} while(ret == UNZ_OK && UNZ_OK != UNZ_END_OF_LIST_OF_FILE);
} while(ret == UNZ_OK && ret != UNZ_END_OF_LIST_OF_FILE);
// Close
unzClose(zip);