mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
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>
This commit is contained in:
committed by
Junio C Hamano
parent
6d2df284e7
commit
f9beff0336
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user