1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-13 22:46:10 +02:00

pathspec.c: use the right index instead of the_index

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Nguyễn Thái Ngọc Duy 2018-08-13 18:14:30 +02:00 committed by Junio C Hamano
parent c7f3259d0d
commit d17ef3a94e

View File

@ -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);
}
}