mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
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:
parent
b4d17e6d9d
commit
cc3aa21c2d
@ -151,8 +151,6 @@ int32_t mz_stream_bzip_read(void *stream, void *buf, int32_t size)
|
|||||||
|
|
||||||
if (read < 0)
|
if (read < 0)
|
||||||
return read;
|
return read;
|
||||||
if (read == 0)
|
|
||||||
break;
|
|
||||||
|
|
||||||
bzip->bzstream.next_in = (char *)bzip->buffer;
|
bzip->bzstream.next_in = (char *)bzip->buffer;
|
||||||
bzip->bzstream.avail_in = (uint32_t)read;
|
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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while ((bzip->bzstream.avail_out > 0) && (in_bytes > 0 || out_bytes > 0));
|
while (bzip->bzstream.avail_out > 0);
|
||||||
|
|
||||||
if (bzip->error != 0)
|
if (bzip->error != 0)
|
||||||
return MZ_DATA_ERROR;
|
return MZ_DATA_ERROR;
|
||||||
|
@ -183,8 +183,6 @@ int32_t mz_stream_lzma_read(void *stream, void *buf, int32_t size)
|
|||||||
|
|
||||||
if (read < 0)
|
if (read < 0)
|
||||||
return read;
|
return read;
|
||||||
if (read == 0)
|
|
||||||
break;
|
|
||||||
|
|
||||||
lzma->lstream.next_in = lzma->buffer;
|
lzma->lstream.next_in = lzma->buffer;
|
||||||
lzma->lstream.avail_in = (size_t)read;
|
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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while ((lzma->lstream.avail_out > 0) && (in_bytes > 0 || out_bytes > 0));
|
while (lzma->lstream.avail_out > 0);
|
||||||
|
|
||||||
if (lzma->error != 0)
|
if (lzma->error != 0)
|
||||||
return MZ_DATA_ERROR;
|
return MZ_DATA_ERROR;
|
||||||
|
@ -203,7 +203,7 @@ int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while ((zlib->zstream.avail_out > 0) && (in_bytes > 0 || out_bytes > 0));
|
while (zlib->zstream.avail_out > 0);
|
||||||
|
|
||||||
if (zlib->error != 0)
|
if (zlib->error != 0)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user