X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=diffcore-pathspec.c;h=a48acbc965d5187fc9abb3ffab4fc9e60d4feac3;hb=87a81c834bf48f8cbf8778cae78ed553f3bbd32c;hp=0392d66a55dc425d113d8969c33ccbe7d3c1497e;hpb=847941fdd962d71a724d72b9f90389bae835d2c0;p=git.git diff --git a/diffcore-pathspec.c b/diffcore-pathspec.c index 0392d66a..a48acbc9 100644 --- a/diffcore-pathspec.c +++ b/diffcore-pathspec.c @@ -4,7 +4,6 @@ #include "cache.h" #include "diff.h" #include "diffcore.h" -#include "delta.h" struct path_spec { const char *spec; @@ -22,9 +21,13 @@ 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; } return 0; @@ -45,12 +48,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++) {