summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 381ca9a)
raw | patch | inline | side by side (parent: 381ca9a)
author | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Tue, 31 May 2005 22:17:58 +0000 (15:17 -0700) | ||
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Tue, 31 May 2005 22:17:58 +0000 (15:17 -0700) |
Removing (and ignoring) them is wrong, since that means
that a pathspec of "xxxx/" would match a regular filename
of "xxxx", which is obviously incorrect.
that a pathspec of "xxxx/" would match a regular filename
of "xxxx", which is obviously incorrect.
diffcore-pathspec.c | patch | blob | history |
diff --git a/diffcore-pathspec.c b/diffcore-pathspec.c
index 7f18a6ca3c3b096c2e2a9c38716df259866a5458..a48acbc965d5187fc9abb3ffab4fc9e60d4feac3 100644 (file)
--- a/diffcore-pathspec.c
+++ b/diffcore-pathspec.c
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;
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++) {