Signed-off-by: Christian Couder <chriscool@xxxxxxxxxxxxx> --- builtin/checkout.c | 1 + builtin/merge.c | 6 ++++-- merge-recursive.c | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/builtin/checkout.c b/builtin/checkout.c index 3ddda34..df8fef0 100644 --- a/builtin/checkout.c +++ b/builtin/checkout.c @@ -435,6 +435,7 @@ static int merge_working_tree(struct checkout_opts *opts, init_tree_desc(&trees[1], tree->buffer, tree->size); ret = unpack_trees(2, trees, &topts); + free_unpack_error_msgs(&topts); if (ret == -1) { /* * Unpack couldn't do a trivial merge; either diff --git a/builtin/merge.c b/builtin/merge.c index 470fc57..b96a9ae 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -768,7 +768,7 @@ int checkout_fast_forward(const unsigned char *head, const unsigned char *remote struct tree *trees[MAX_UNPACK_TREES]; struct unpack_trees_options opts; struct tree_desc t[MAX_UNPACK_TREES]; - int i, fd, nr_trees = 0; + int i, fd, res, nr_trees = 0; struct dir_struct dir; struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file)); @@ -805,7 +805,9 @@ int checkout_fast_forward(const unsigned char *head, const unsigned char *remote parse_tree(trees[i]); init_tree_desc(t+i, trees[i]->buffer, trees[i]->size); } - if (unpack_trees(nr_trees, t, &opts)) + res = unpack_trees(nr_trees, t, &opts); + free_unpack_error_msgs(&opts); + if (res) return -1; if (write_cache(fd, active_cache, active_nr) || commit_locked_index(lock_file)) diff --git a/merge-recursive.c b/merge-recursive.c index 9c3570a..e196c45 100644 --- a/merge-recursive.c +++ b/merge-recursive.c @@ -239,6 +239,7 @@ static int git_merge_trees(int index_only, init_tree_desc_from_tree(t+2, merge); rc = unpack_trees(3, t, &opts); + free_unpack_error_msgs(&opts); cache_tree_free(&active_cache_tree); return rc; } -- 1.7.10.2.555.g6528037 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html