Fix issue with truncated ZLIB output.

This commit is contained in:
Ryan Desmond 2019-09-06 11:49:11 -04:00
parent edebe6891d
commit 58dfe87d1d

View File

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