mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Support reading 65kb+ entries on most machines.
This commit is contained in:
parent
d22a27a9c3
commit
3064a0e551
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user