From 16157b8074926348a9ee191ce6b50c8e1656161c Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 5 Jan 2007 13:31:43 -0800 Subject: [PATCH] builtin-prune: memory diet. Somehow we forgot to turn save_commit_buffer off while walking the reachable objects. Releasing the memory for commit object data that we do not use matters for large projects (for example, about 90MB is saved while traversing linux-2.6 history). Signed-off-by: Junio C Hamano --- builtin-prune.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin-prune.c b/builtin-prune.c index 00a53b364..b469c43bc 100644 --- a/builtin-prune.c +++ b/builtin-prune.c @@ -253,6 +253,8 @@ int cmd_prune(int argc, const char **argv, const char *prefix) usage(prune_usage); } + save_commit_buffer = 0; + /* * Set up revision parsing, and mark us as being interested * in all object types, not just commits. -- 2.45.2