From cd0fe1ac273c14097636847a2ecb4260d185ae28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Tue, 12 Jul 2011 20:46:07 +0200 Subject: [PATCH] Free sig in reflog test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Martín Nieto --- tests/t10-refs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/t10-refs.c b/tests/t10-refs.c index aab21dea8..f151b5a46 100644 --- a/tests/t10-refs.c +++ b/tests/t10-refs.c @@ -1064,6 +1064,7 @@ BEGIN_TEST(reflog0, "write a reflog for a given reference and ensure it can be r must_be_true(strcmp(current_master_tip, entry->oid_cur) == 0); must_be_true(strcmp(commit_msg, entry->msg) == 0); + git_signature_free(committer); git_reflog_free(reflog); close_temp_repo(repo2); END_TEST