Only return MZ_MEM_ERROR if no other error code was returned before.

This commit is contained in:
Richard Huveneers 2023-06-11 11:38:28 +02:00 committed by Nathan Moinvaziri
parent 76daa9956f
commit b4affb4f9d

View File

@ -1802,7 +1802,7 @@ static int32_t mz_zip_entry_open_int(void *handle, uint8_t raw, int16_t compress
err = MZ_PARAM_ERROR;
}
if (!zip->compress_stream)
if (err == MZ_OK && !zip->compress_stream)
err = MZ_MEM_ERROR;
if (err == MZ_OK) {