mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Move offset check after we have corrected for incorrect offsets. #339
This commit is contained in:
parent
a18f49f6d3
commit
87a668fd64
12
mz_zip.c
12
mz_zip.c
@ -322,12 +322,6 @@ static int32_t mz_zip_read_cd(void *handle)
|
||||
}
|
||||
}
|
||||
|
||||
if (err == MZ_OK)
|
||||
{
|
||||
if (eocd_pos < zip->cd_offset + zip->cd_size)
|
||||
err = MZ_FORMAT_ERROR;
|
||||
}
|
||||
|
||||
if (err == MZ_OK)
|
||||
{
|
||||
// Verify central directory signature exists at offset
|
||||
@ -350,6 +344,12 @@ static int32_t mz_zip_read_cd(void *handle)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (err == MZ_OK)
|
||||
{
|
||||
if (eocd_pos < zip->cd_offset + zip->cd_size)
|
||||
err = MZ_FORMAT_ERROR;
|
||||
}
|
||||
|
||||
return err;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user