Move offset check after we have corrected for incorrect offsets. #339

This commit is contained in:
Nathan Moinvaziri 2018-11-06 10:09:58 -08:00
parent a18f49f6d3
commit 87a668fd64

View File

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