commit | 62d046a07b4cd4328d3d40aab097a1d97c4d7b20 | [log] [tgz] |
---|---|---|
author | Petr Baudis <pasky@ucw.cz> | Sun Apr 17 23:34:51 2005 +0200 |
committer | Petr Baudis <xpasky@machine.sinus.cz> | Wed May 11 22:45:42 2005 +0200 |
tree | 2f922ea7cdc938a75da2747776a6fe056450d332 | |
parent | cb1da3a794fb384cab6a515afc008991e180831e [diff] [blame] |
Stick a comment to update-cache.c:refresh_cache() that you can't just free(archive_cache[i]) when replacing it there.
diff --git a/update-cache.c b/update-cache.c index 3b44fe1..19d8f82 100644 --- a/update-cache.c +++ b/update-cache.c
@@ -249,6 +249,9 @@ 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;