Get mz_dir_make to test for an empty path

fixes https://github.com/zlib-ng/minizip-ng/issues/737
This commit is contained in:
pmqs 2023-10-26 09:22:27 +01:00 committed by Nathan Moinvaziri
parent 26c484d7ce
commit 145754983c

View File

@ -283,6 +283,9 @@ int32_t mz_dir_make(const char *path) {
char *match = NULL;
char hold = 0;
if (!*path)
return MZ_OK;
current_dir = strdup(path);
if (!current_dir)
return MZ_MEM_ERROR;