Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--diffcore-pathspec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/diffcore-pathspec.c b/diffcore-pathspec.c
index 4b7adc396a..78b3cb4c0a 100644
--- a/diffcore-pathspec.c
+++ b/diffcore-pathspec.c
@@ -21,8 +21,8 @@ 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->len;
- if (! strncmp(s->spec, name, len) &&
+ int len = s[i].len;
+ if (! strncmp(s[i].spec, name, len) &&
len <= namelen &&
(name[len] == 0 || name[len] == '/'))
return 1;