We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98ae0a0 commit 6509718Copy full SHA for 6509718
1 file changed
common/common.cpp
@@ -703,7 +703,6 @@ static inline bool glob_match(const char * pattern, const char * str) {
703
}
704
if (pattern[0] == '*' && pattern[1] == '*') {
705
const char * p = pattern + 2;
706
- if (*p == '/') p++;
707
if (glob_match(p, str)) return true;
708
if (*str != '\0') return glob_match(pattern, str + 1);
709
return false;
0 commit comments