提交 6ec82a3b 编写于 作者: R Rich Felker

fix fnmatch corner cases related to escaping

the FNM_PATHNAME logic for advancing by /-delimited components was
incorrect when the / character was escaped (i.e. \/), and a final \ at
the end of pattern was not handled correctly.
上级 da0fcdb8
......@@ -19,7 +19,7 @@
#include <wchar.h>
#include <wctype.h>
#define END -1
#define END 0
#define UNMATCHABLE -2
#define BRACKET -3
#define QUESTION -4
......@@ -53,7 +53,7 @@ static int pat_next(const char *pat, size_t m, size_t *step, int flags)
return END;
}
*step = 1;
if (pat[0]=='\\' && !(flags & FNM_NOESCAPE)) {
if (pat[0]=='\\' && pat[1] && !(flags & FNM_NOESCAPE)) {
*step = 2;
pat++;
esc = 1;
......@@ -288,12 +288,12 @@ int fnmatch(const char *pat, const char *str, int flags)
if (flags & FNM_PATHNAME) for (;;) {
for (s=str; *s && *s!='/'; s++);
for (p=pat; (c=pat_next(p, -1, &inc, flags))!=END && c!='/'; p+=inc);
if (*p!=*s) return FNM_NOMATCH;
if (c!=*s) return FNM_NOMATCH;
if (fnmatch_internal(pat, p-pat, str, s-str, flags))
return FNM_NOMATCH;
if (!*s) return 0;
str = s+1;
pat = p+1;
pat = p+inc;
}
return fnmatch_internal(pat, -1, str, -1, flags);
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册