mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed path not resolving properly when previous output buffer contains certain characters. #433
This commit is contained in:
parent
106d0ee136
commit
e22948c731
3
mz_os.c
3
mz_os.c
@ -148,6 +148,7 @@ int32_t mz_path_resolve(const char *path, char *output, int32_t max_output)
|
|||||||
const char *check = output;
|
const char *check = output;
|
||||||
char *target = output;
|
char *target = output;
|
||||||
|
|
||||||
|
|
||||||
if (max_output <= 0)
|
if (max_output <= 0)
|
||||||
return MZ_PARAM_ERROR;
|
return MZ_PARAM_ERROR;
|
||||||
|
|
||||||
@ -157,7 +158,7 @@ int32_t mz_path_resolve(const char *path, char *output, int32_t max_output)
|
|||||||
if ((*check == '\\') || (*check == '/'))
|
if ((*check == '\\') || (*check == '/'))
|
||||||
check += 1;
|
check += 1;
|
||||||
|
|
||||||
if ((source == path) || (check != source) || (*target == 0))
|
if ((source == path) || (target == output) || (check != source))
|
||||||
{
|
{
|
||||||
/* Skip double paths */
|
/* Skip double paths */
|
||||||
if ((*check == '\\') || (*check == '/'))
|
if ((*check == '\\') || (*check == '/'))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user