mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed disk spanning failures due to changes in #799.
At the end of a disk, we return any bytes read before proceeding to the next disk. This allows us to return MZ_EXIST_ERROR when the next disk is not found.
This commit is contained in:
parent
b2691a0c96
commit
6946ba67d0
@ -243,10 +243,11 @@ int32_t mz_stream_split_read(void *stream, void *buf, int32_t size) {
|
|||||||
if (read == 0) {
|
if (read == 0) {
|
||||||
if (split->current_disk < 0) /* No more disks to goto */
|
if (split->current_disk < 0) /* No more disks to goto */
|
||||||
break;
|
break;
|
||||||
|
if (size != bytes_left) /* Report read from previous disk before switching */
|
||||||
|
break;
|
||||||
err = mz_stream_split_goto_disk(stream, split->current_disk + 1);
|
err = mz_stream_split_goto_disk(stream, split->current_disk + 1);
|
||||||
if (err == MZ_EXIST_ERROR) {
|
if (err == MZ_EXIST_ERROR)
|
||||||
split->current_disk = -1;
|
split->current_disk = -1;
|
||||||
}
|
|
||||||
if (err != MZ_OK)
|
if (err != MZ_OK)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user