diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-08-23 22:05:10 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-23 22:05:10 +0200 |
commit | 64ca23afda5bd7514115a4457abf37db21b989ac (patch) | |
tree | 77db004907aecc89d39390153f9fe48c08cc1df9 /read-cache.c | |
parent | compat/snprintf.c: handle snprintf's that always return the # chars transmitted (diff) | |
download | git-64ca23afda5bd7514115a4457abf37db21b989ac.tar.xz git-64ca23afda5bd7514115a4457abf37db21b989ac.zip |
discard_cache: reset lazy name_hash bit
We forgot to reset name_hash_initialized bit when discarding the in-core index.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'read-cache.c')
-rw-r--r-- | read-cache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/read-cache.c b/read-cache.c index 2c03ec3069..6c57095f73 100644 --- a/read-cache.c +++ b/read-cache.c @@ -1243,6 +1243,7 @@ int discard_index(struct index_state *istate) istate->cache_nr = 0; istate->cache_changed = 0; istate->timestamp = 0; + istate->name_hash_initialized = 0; free_hash(&istate->name_hash); cache_tree_free(&(istate->cache_tree)); free(istate->alloc); |