Fixed signed/unsigned comparison warning in MSVC.

This commit is contained in:
Nathan Moinvaziri 2021-01-29 18:36:28 -08:00
parent 2bc5f17521
commit e23732e94a

View File

@ -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;
}