From c599caca3ab7d5d66d7cadbbf589c2e4b5587d3e Mon Sep 17 00:00:00 2001 From: Ingo Molnar Date: Thu, 14 Apr 2005 12:43:44 +0200 Subject: [patch] git: cleanup in ls-tree.c cleanup: this patch adds a free() to ls-tree.c. (Technically it's not a memory leak yet because the buffer is allocated once by the function and then the utility exits - but it's a tad cleaner to not leave such assumptions in the code, so that if someone reuses the function (or extends the utility to include a loop) the uncleanliness doesnt develop into a real memory leak.) Signed-off-by: Ingo Molnar Forward-ported. Signed-off-by: Petr Baudis --- ls-tree.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ls-tree.c') diff --git a/ls-tree.c b/ls-tree.c index 7f8f8644a..4231c4b23 100644 --- a/ls-tree.c +++ b/ls-tree.c @@ -77,6 +77,7 @@ static int list(unsigned char *sha1) if (!buffer) die("unable to read sha1 file"); list_recursive(buffer, "tree", size, NULL); + free(buffer); return 0; } -- cgit v1.2.1