mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Check previous value of err.
This commit is contained in:
parent
545d729594
commit
57cbcd2fbd
7
mz_zip.c
7
mz_zip.c
@ -1302,9 +1302,12 @@ static int32_t mz_zip_recover_cd(void *handle)
|
||||
|
||||
mz_stream_mem_create(&local_file_info_stream);
|
||||
mz_stream_mem_open(local_file_info_stream, NULL, MZ_OPEN_MODE_CREATE);
|
||||
|
||||
err = mz_stream_find(zip->stream, (const void *)local_header_magic, sizeof(local_header_magic),
|
||||
|
||||
if (err == MZ_OK)
|
||||
{
|
||||
err = mz_stream_find(zip->stream, (const void *)local_header_magic, sizeof(local_header_magic),
|
||||
INT64_MAX, &next_header_pos);
|
||||
}
|
||||
|
||||
while (err == MZ_OK && !eof)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user