X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=diffcore-pathspec.c;h=68fe009132d1e900138a9d61bb7c658e23d9b76d;hb=10bea152a34b2bf1194ede5e0c9e5595ab2100f3;hp=7f18a6ca3c3b096c2e2a9c38716df259866a5458;hpb=844e6e4d58d3e52eee7fb490bfaeadaa5ea2d59c;p=git.git diff --git a/diffcore-pathspec.c b/diffcore-pathspec.c index 7f18a6ca..68fe0091 100644 --- a/diffcore-pathspec.c +++ b/diffcore-pathspec.c @@ -21,9 +21,15 @@ static int matches_pathspec(const char *name, struct path_spec *s, int cnt) namelen = strlen(name); for (i = 0; i < cnt; i++) { int len = s[i].len; - if (! strncmp(s[i].spec, name, len) && - len <= namelen && - (name[len] == 0 || name[len] == '/')) + if (namelen < len) + continue; + if (memcmp(s[i].spec, name, len)) + continue; + if (s[i].spec[len-1] == '/' || + name[len] == 0 || + name[len] == '/') + return 1; + if (!len) return 1; } return 0; @@ -44,12 +50,8 @@ void diffcore_pathspec(const char **pathspec) speccnt = i; spec = xmalloc(sizeof(*spec) * speccnt); for (i = 0; pathspec[i]; i++) { - int l; spec[i].spec = pathspec[i]; - l = strlen(pathspec[i]); - while (l > 0 && pathspec[i][l-1] == '/') - l--; - spec[i].len = l; + spec[i].len = strlen(pathspec[i]); } for (i = 0; i < q->nr; i++) {