mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed signed/unsigned comparison warning in MSVC.
This commit is contained in:
parent
2bc5f17521
commit
e23732e94a
2
mz_zip.c
2
mz_zip.c
@ -1072,7 +1072,7 @@ static int32_t mz_zip_read_cd(void *handle) {
|
||||
if (eocd_pos < zip->cd_offset) {
|
||||
/* End of central dir should always come after central dir */
|
||||
err = MZ_FORMAT_ERROR;
|
||||
} else if (eocd_pos < (uint64_t)zip->cd_offset + zip->cd_size) {
|
||||
} else if ((uint64_t)eocd_pos < (uint64_t)zip->cd_offset + zip->cd_size) {
|
||||
/* Truncate size of cd if incorrect size or offset provided */
|
||||
zip->cd_size = eocd_pos - zip->cd_offset;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user