My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7f3259
)
pathspec.c: use the right index instead of the_index
author
Nguyễn Thái Ngọc Duy
<pclouds@gmail.com>
Mon, 13 Aug 2018 16:14:30 +0000
(18:14 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 13 Aug 2018 21:14:43 +0000
(14:14 -0700)
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
pathspec.c
patch
|
blob
|
history
diff --git
a/pathspec.c
b/pathspec.c
index
897cb9c
..
6f00599
100644
(file)
--- a/
pathspec.c
+++ b/
pathspec.c
@@
-37,7
+37,7
@@
void add_pathspec_matches_against_index(const struct pathspec *pathspec,
return;
for (i = 0; i < istate->cache_nr; i++) {
const struct cache_entry *ce = istate->cache[i];
- ce_path_match(
&the_index
, ce, pathspec, seen);
+ ce_path_match(
istate
, ce, pathspec, seen);
}
}