diff --git a/cache.h b/cache.h index b86eb84db..f505ffbcf 100644 --- a/cache.h +++ b/cache.h @@ -1074,7 +1074,7 @@ struct cache_def { int prefix_len_stat_func; }; #define CACHE_DEF_INIT { STRBUF_INIT, 0, 0, 0 } -static inline void cache_def_free(struct cache_def *cache) +static inline void cache_def_clear(struct cache_def *cache) { strbuf_release(&cache->path); } diff --git a/preload-index.c b/preload-index.c index 79ce8a998..c1fe3a3ef 100644 --- a/preload-index.c +++ b/preload-index.c @@ -63,7 +63,7 @@ static void *preload_thread(void *_data) continue; ce_mark_uptodate(ce); } while (--nr > 0); - cache_def_free(&cache); + cache_def_clear(&cache); return NULL; }