Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
unpack-trees: avoid the_index in verify_absent()
[gitweb.git]
/
pathspec.c
diff --git
a/pathspec.c
b/pathspec.c
index 27cd6067860d4fdb0b48b6bcf7c84d5903efd71b..897cb9cbbe3348f3d1d0a5bbcc77079dc6d9df68 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(ce, pathspec, seen);
+ ce_path_match(
&the_index,
ce, pathspec, seen);
}
}