git-query

git data extraction tool using c and libgit2

git clone https://9o.is/git/git-query.git

commit 395703b11ff6cfbeba1d450c52a28e21c1713599
parent 792e0ddbb67b45fe9eb7139b1331e34e43c485dc
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Thu, 17 Dec 2015 22:56:32 +0100

free the tree

Diffstat:
Murmoms.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/urmoms.c b/urmoms.c @@ -52,6 +52,8 @@ commitinfo_free(struct commitinfo *ci) git_diff_stats_free(ci->stats); git_diff_free(ci->diff); + git_tree_free(ci->commit_tree); + git_tree_free(ci->parent_tree); git_commit_free(ci->commit); }