Support reading 65kb+ entries on most machines.

This commit is contained in:
Evan Miller 2018-01-21 20:32:26 -05:00
parent d22a27a9c3
commit 3064a0e551
2 changed files with 3 additions and 3 deletions

View File

@ -129,7 +129,7 @@ int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size)
zlib->zstream.next_out = (uint8_t*)buf;
zlib->zstream.avail_out = (uint16_t)size;
zlib->zstream.avail_out = (uint32_t)size;
do
{
@ -379,4 +379,4 @@ static int32_t mz_stream_zlib_crc32(int32_t value, const void *buf, int32_t size
void *mz_stream_zlib_get_crc32_update(void)
{
return (void *)mz_stream_zlib_crc32;
}
}

View File

@ -1314,7 +1314,7 @@ extern int32_t mz_zip_entry_read(void *handle, void *buf, uint32_t len)
if (zip == NULL || zip->entry_opened == 0)
return MZ_PARAM_ERROR;
if (len > UINT16_MAX) // Zlib limitation
if (sizeof(unsigned int) == 2 && len > UINT16_MAX) // Zlib limitation
return MZ_PARAM_ERROR;
if (len == 0 || zip->file_info.uncompressed_size == 0)
return 0;