mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Assign bytes_to_read only once in mz_stream_lzma_read.
This commit is contained in:
parent
fd493fb0cd
commit
3f29b18a6f
@ -153,7 +153,7 @@ int32_t mz_stream_lzma_read(void *stream, void *buf, int32_t size) {
|
|||||||
int32_t total_out = 0;
|
int32_t total_out = 0;
|
||||||
int32_t in_bytes = 0;
|
int32_t in_bytes = 0;
|
||||||
int32_t out_bytes = 0;
|
int32_t out_bytes = 0;
|
||||||
int32_t bytes_to_read = 0;
|
int32_t bytes_to_read = sizeof(lzma->buffer);
|
||||||
int32_t read = 0;
|
int32_t read = 0;
|
||||||
int32_t err = LZMA_OK;
|
int32_t err = LZMA_OK;
|
||||||
|
|
||||||
@ -163,7 +163,6 @@ int32_t mz_stream_lzma_read(void *stream, void *buf, int32_t size) {
|
|||||||
|
|
||||||
do {
|
do {
|
||||||
if (lzma->lstream.avail_in == 0) {
|
if (lzma->lstream.avail_in == 0) {
|
||||||
bytes_to_read = sizeof(lzma->buffer);
|
|
||||||
if (lzma->max_total_in > 0) {
|
if (lzma->max_total_in > 0) {
|
||||||
if ((int64_t)bytes_to_read > (lzma->max_total_in - lzma->total_in))
|
if ((int64_t)bytes_to_read > (lzma->max_total_in - lzma->total_in))
|
||||||
bytes_to_read = (int32_t)(lzma->max_total_in - lzma->total_in);
|
bytes_to_read = (int32_t)(lzma->max_total_in - lzma->total_in);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user