mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed bug where miniunz would not list or extract all files
This commit is contained in:
parent
2a179adac2
commit
20a45d8c79
@ -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)
|
||||
{
|
||||
|
BIN
miniunz.exe
BIN
miniunz.exe
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user