Fixed bug where miniunz would not list or extract all files

This commit is contained in:
Nathan Moinvaziri 2013-05-02 18:53:16 -07:00
parent 2a179adac2
commit 20a45d8c79
2 changed files with 2 additions and 2 deletions

View File

@ -284,7 +284,7 @@ int do_list(unzFile uf)
err = unzGoToNextFile(uf);
}
while (err != UNZ_OK);
while (err == UNZ_OK);
if (err != UNZ_END_OF_LIST_OF_FILE)
printf("error %d with zipfile in unzGoToNextFile\n", err);
@ -445,7 +445,7 @@ int do_extract_all(unzFile uf, int opt_extract_without_path, int opt_overwrite,
break;
err = unzGoToNextFile(uf);
}
while (err != UNZ_OK);
while (err == UNZ_OK);
if (err != UNZ_END_OF_LIST_OF_FILE)
{

Binary file not shown.