diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-17 22:56:32 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-17 22:56:32 +0100 |
commit | 8ea58314385412e50e01a7de917f59ce82ee21cb (patch) | |
tree | 59e95890b3ffa2e8c35913b084781bf0895c4501 /urmoms.c | |
parent | d073ffa0a26256a94c5e1ab53b50cc147631081f (diff) |
free the tree
Diffstat (limited to 'urmoms.c')
-rw-r--r-- | urmoms.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); } |