diff --git a/update-cache.c b/update-cache.c index 3b44fe14ef..19d8f826a5 100644 --- a/update-cache.c +++ b/update-cache.c @@ -249,6 +249,9 @@ static int refresh_cache(void) continue; } active_cache_changed = 1; + /* You can NOT just free active_cache[i] here, since it + * might not be necessarily malloc()ed but can also come + * from mmap(). */ active_cache[i] = new; } return has_errors;