diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-08-13 18:14:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-08-13 23:14:42 +0200 |
commit | f9beff0336f7819e3d66bf8511b953e7c866f8a9 (patch) | |
tree | d503d4b91d248e4239f453aa68bf892839f0e9b8 /preload-index.c | |
parent | dir.c: remove an implicit dependency on the_index in pathspec code (diff) | |
download | git-f9beff0336f7819e3d66bf8511b953e7c866f8a9.tar.xz git-f9beff0336f7819e3d66bf8511b953e7c866f8a9.zip |
preload-index.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>
Diffstat (limited to '')
-rw-r--r-- | preload-index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preload-index.c b/preload-index.c index d61d7662d5..71cd2437a3 100644 --- a/preload-index.c +++ b/preload-index.c @@ -58,7 +58,7 @@ static void *preload_thread(void *_data) continue; if (ce->ce_flags & CE_FSMONITOR_VALID) continue; - if (!ce_path_match(&the_index, ce, &p->pathspec, NULL)) + if (!ce_path_match(index, ce, &p->pathspec, NULL)) continue; if (threaded_has_symlink_leading_path(&cache, ce->name, ce_namelen(ce))) continue; |