Fixed no error when trying to extract a single file that is not in archive. #364

This commit is contained in:
Nathan Moinvaziri 2019-02-13 08:51:58 -08:00
parent 6b220aa5fb
commit ba49029b54

View File

@ -875,6 +875,9 @@ int32_t mz_zip_reader_save_all(void *handle, const char *destination_dir)
err = mz_zip_reader_goto_first_entry(handle);
if (err == MZ_END_OF_LIST)
return err;
while (err == MZ_OK)
{
/* Construct output path */