diff options
Diffstat (limited to 'source/lib/ms_fnmatch.c')
-rw-r--r-- | source/lib/ms_fnmatch.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source/lib/ms_fnmatch.c b/source/lib/ms_fnmatch.c index ca534467fa..8b69f1c2d2 100644 --- a/source/lib/ms_fnmatch.c +++ b/source/lib/ms_fnmatch.c @@ -154,7 +154,6 @@ int ms_fnmatch(const char *pattern, const char *string, bool translate_pattern, struct max_n *max_n = NULL; struct max_n *max_n_free = NULL; struct max_n one_max_n; - size_t converted_size; if (ISDOTDOT(string)) { string = "."; @@ -170,11 +169,11 @@ int ms_fnmatch(const char *pattern, const char *string, bool translate_pattern, } } - if (!push_ucs2_allocate(&p, pattern, &converted_size)) { + if (push_ucs2_allocate(&p, pattern) == (size_t)-1) { return -1; } - if (!push_ucs2_allocate(&s, string, &converted_size)) { + if (push_ucs2_allocate(&s, string) == (size_t)-1) { SAFE_FREE(p); return -1; } |