aboutsummaryrefslogtreecommitdiff
path: root/entry.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2014-06-13 19:19:34 +0700
committerJunio C Hamano <gitster@pobox.com>2014-06-13 11:49:39 -0700
commitd4a2024aef90fa5dd2b0e5027f9340719ff20748 (patch)
tree6d69b97c8e8df1d5dc98c3ba138d3d58306f1065 /entry.c
parente6c286e8b2d0748cfaa670f6738db0c232427cd3 (diff)
downloadgit-d4a2024aef90fa5dd2b0e5027f9340719ff20748.tar.gz
git-d4a2024aef90fa5dd2b0e5027f9340719ff20748.tar.xz
entry.c: update cache_changed if refresh_cache is set in checkout_entry()
Other fill_stat_cache_info() is on new entries, which should set CE_ENTRY_ADDED in cache_changed, so we're safe. 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 'entry.c')
-rw-r--r--entry.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/entry.c b/entry.c
index 77c688262..d913c1d62 100644
--- a/entry.c
+++ b/entry.c
@@ -210,9 +210,11 @@ static int write_entry(struct cache_entry *ce,
finish:
if (state->refresh_cache) {
+ assert(state->istate);
if (!fstat_done)
lstat(ce->name, &st);
fill_stat_cache_info(ce, &st);
+ state->istate->cache_changed |= CE_ENTRY_CHANGED;
}
return 0;
}