Remove break if no bytes read because bytes might still be output.

Remove unnecessary in_bytes or out_bytes check.
This commit is contained in:
Nathan Moinvaziri 2019-09-17 10:03:03 -07:00
parent b4d17e6d9d
commit cc3aa21c2d
3 changed files with 3 additions and 7 deletions

View File

@ -151,8 +151,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;
@ -188,7 +186,7 @@ int32_t mz_stream_bzip_read(void *stream, void *buf, int32_t size)
break;
}
}
while ((bzip->bzstream.avail_out > 0) && (in_bytes > 0 || out_bytes > 0));
while (bzip->bzstream.avail_out > 0);
if (bzip->error != 0)
return MZ_DATA_ERROR;

View File

@ -183,8 +183,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;
@ -217,7 +215,7 @@ int32_t mz_stream_lzma_read(void *stream, void *buf, int32_t size)
break;
}
}
while ((lzma->lstream.avail_out > 0) && (in_bytes > 0 || out_bytes > 0));
while (lzma->lstream.avail_out > 0);
if (lzma->error != 0)
return MZ_DATA_ERROR;

View File

@ -203,7 +203,7 @@ int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size)
break;
}
}
while ((zlib->zstream.avail_out > 0) && (in_bytes > 0 || out_bytes > 0));
while (zlib->zstream.avail_out > 0);
if (zlib->error != 0)
{