When update-cache --refresh replaces an existing cache entry
with a new one, it forgets to free the original.

Signed-off-by: Junio C Hamano <[EMAIL PROTECTED]>
---
update-cache.c:  61d2b93a751f35ba24f479cd4fc151188916f02a
--- update-cache.c
+++ update-cache.c      2005-04-16 15:49:03.000000000 -0700
@@ -203,6 +203,8 @@
                        printf("%s: needs update\n", ce->name);
                        continue;
                }
+               if (new != ce)
+                       free(ce);
                active_cache[i] = new;
        }
 }

-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to