Fixed bug not being able read across split disks properly.

This commit is contained in:
Nathan Moinvaziri 2017-10-26 20:10:02 -07:00
parent f2b096a82e
commit 62e7e2b0b9
2 changed files with 7 additions and 2 deletions

View File

@ -24,7 +24,7 @@ cmake --build .
| minizip.c | Sample application | No |
| mz_compat.\* | Minizip 1.0 compatibility layer | No |
| mz.h | Error codes and flags | Yes |
| mz_os\* | OS specific helper functions | Encryption |
| mz_os\* | OS specific helper functions | Encryption, Disk Splitting |
| mz_strm.\* | Stream interface | Yes |
| mz_strm_aes.\* | WinZIP AES stream | No |
| mz_strm_buf.\* | Buffered stream | No |

View File

@ -15,6 +15,7 @@
#include <string.h>
#include "mz.h"
#include "mz_os.h"
#include "mz_strm.h"
#include "mz_strm_split.h"
@ -78,13 +79,17 @@ int32_t mz_stream_split_open_disk(void *stream, int32_t number_disk)
snprintf(&split->path_disk[i], split->path_disk_size - i, ".z%02d", number_disk + 1);
break;
}
// If disk number doesn't exist then return MZ_EXIST_ERROR
err = mz_os_file_exists(split->path_disk);
}
else
{
strncpy(split->path_disk, split->path_cd, split->path_disk_size);
}
err = mz_stream_open(split->stream.base, split->path_disk, split->mode);
if (err == MZ_OK)
err = mz_stream_open(split->stream.base, split->path_disk, split->mode);
if (err == MZ_OK)
{