aboutsummaryrefslogtreecommitdiff
path: root/fsck-objects.c
diff options
context:
space:
mode:
authorSergey Vlasov <vsu@altlinux.ru>2005-11-15 19:07:15 +0300
committerJunio C Hamano <junkio@cox.net>2005-11-15 11:42:28 -0800
commit545f229a4b43212e683ac63e5aa740324ac7799e (patch)
tree97aa7e16d6e0b7edbeda9fa78740de6e8a4e566a /fsck-objects.c
parenta52e4ef877f693a69710145f56d867365a755f91 (diff)
downloadgit-545f229a4b43212e683ac63e5aa740324ac7799e.tar.gz
git-545f229a4b43212e683ac63e5aa740324ac7799e.tar.xz
git-fsck-objects: Free tree entries after use
The Massif tool of Valgrind revealed that parsed tree entries occupy more than 60% of memory allocated by git-fsck-objects. These entries can be freed immediately after use, which significantly decreases memory consumption. Signed-off-by: Sergey Vlasov <vsu@altlinux.ru> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'fsck-objects.c')
-rw-r--r--fsck-objects.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/fsck-objects.c b/fsck-objects.c
index 17d05363e..c1b279efc 100644
--- a/fsck-objects.c
+++ b/fsck-objects.c
@@ -184,10 +184,17 @@ static int fsck_tree(struct tree *item)
default:
break;
}
+ free(last->name);
+ free(last);
}
last = entry;
}
+ if (last) {
+ free(last->name);
+ free(last);
+ }
+ item->entries = NULL;
retval = 0;
if (has_full_path) {