mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed bug extracting 0-byte file when stored.
This commit is contained in:
parent
ffa830f684
commit
eb80cd9fa4
3
mz_zip.c
3
mz_zip.c
@ -1349,6 +1349,9 @@ extern int32_t mz_zip_entry_read(void *handle, void *buf, uint32_t len)
|
||||
if (len == 0)
|
||||
return MZ_PARAM_ERROR;
|
||||
|
||||
if (zip->file_info.compressed_size == 0)
|
||||
return 0;
|
||||
|
||||
// Read entire entry even if uncompressed_size = 0, otherwise
|
||||
// aes encryption validation will fail if compressed_size > 0
|
||||
read = mz_stream_read(zip->crc32_stream, buf, len);
|
||||
|
Loading…
x
Reference in New Issue
Block a user