mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Allow decompression even though zero bytes read.
This commit is contained in:
parent
90d31c791d
commit
d46559398f
@ -149,8 +149,6 @@ int32_t mz_stream_bzip_read(void *stream, void *buf, int32_t size)
|
||||
|
||||
if (read < 0)
|
||||
return read;
|
||||
if (read == 0)
|
||||
break;
|
||||
|
||||
bzip->bzstream.next_in = (char *)bzip->buffer;
|
||||
bzip->bzstream.avail_in = (uint32_t)read;
|
||||
|
@ -175,8 +175,6 @@ int32_t mz_stream_lzma_read(void *stream, void *buf, int32_t size)
|
||||
|
||||
if (read < 0)
|
||||
return read;
|
||||
if (read == 0)
|
||||
break;
|
||||
|
||||
lzma->lstream.next_in = lzma->buffer;
|
||||
lzma->lstream.avail_in = (size_t)read;
|
||||
|
@ -155,9 +155,6 @@ int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size)
|
||||
if (read < 0)
|
||||
return read;
|
||||
|
||||
if (read == 0)
|
||||
break;
|
||||
|
||||
zlib->zstream.next_in = zlib->buffer;
|
||||
zlib->zstream.avail_in = read;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user