From: Jonathan Nieder Date: Sat, 10 Mar 2012 03:20:34 +0000 (-0600) Subject: fast-import: leakfix for 'ls' of dirty trees X-Git-Tag: v1.7.10-rc2~10^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;ds=sidebyside;h=c27e559da5b26faa31858fe6dc5492d4f605b867;p=git.git fast-import: leakfix for 'ls' of dirty trees When the chosen directory has changed since it was last written to pack, "tree_content_get" makes a deep copy of its content to scribble on while computing the tree name, which we forgot to free. This leak has been present since the 'ls' command was introduced in v1.7.5-rc0~3^2~33 (fast-import: add 'ls' command, 2010-12-02). Signed-off-by: Jonathan Nieder --- diff --git a/fast-import.c b/fast-import.c index 6c37b8400..fff285cd0 100644 --- a/fast-import.c +++ b/fast-import.c @@ -2987,6 +2987,8 @@ static void parse_ls(struct branch *b) store_tree(&leaf); print_ls(leaf.versions[1].mode, leaf.versions[1].sha1, p); + if (leaf.tree) + release_tree_content_recursive(leaf.tree); if (!b || root != &b->branch_tree) release_tree_entry(root); }