summaryrefslogtreecommitdiff
path: root/read-cache.c
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-05-30 13:56:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-06-03 17:10:25 (GMT)
commit582eb8536bfc93e403b008e2d660a6f246a2ff46 (patch)
tree6de545bebae2d8931bf09e9ac93363570495924e /read-cache.c
parent15999998fbda60552742275570947431b57108ae (diff)
downloadgit-582eb8536bfc93e403b008e2d660a6f246a2ff46.zip
git-582eb8536bfc93e403b008e2d660a6f246a2ff46.tar.gz
git-582eb8536bfc93e403b008e2d660a6f246a2ff46.tar.bz2
read-cache: fix wrong 'the_index' usage
We are dealing with the 'istate' index, not 'the_index'. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'read-cache.c')
-rw-r--r--read-cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/read-cache.c b/read-cache.c
index fda78bc..aeda718 100644
--- a/read-cache.c
+++ b/read-cache.c
@@ -622,7 +622,7 @@ int add_to_index(struct index_state *istate, const char *path, struct stat *st,
if (*ptr == '/') {
struct cache_entry *foundce;
++ptr;
- foundce = index_name_exists(&the_index, ce->name, ptr - ce->name, ignore_case);
+ foundce = index_name_exists(istate, ce->name, ptr - ce->name, ignore_case);
if (foundce) {
memcpy((void *)startPtr, foundce->name + (startPtr - ce->name), ptr - startPtr);
startPtr = ptr;