Allow decompression even though zero bytes read.

This commit is contained in:
Nathan Moinvaziri 2018-11-20 03:18:22 -08:00
parent 90d31c791d
commit d46559398f
3 changed files with 0 additions and 7 deletions

View File

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

View File

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

View File

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