Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2011-07-12 22:46:07 +0400
committerCarlos Martín Nieto <carlos@cmartin.tk>2011-07-13 02:23:15 +0400
commitcd0fe1ac273c14097636847a2ecb4260d185ae28 (patch)
treea14e9aecffdcece17e899759d2178eacc91ed5a4 /tests
parentd4760a42f97084fd63f914ebf04ec6275373ad66 (diff)
Free sig in reflog test
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'tests')
-rw-r--r--tests/t10-refs.c1
1 files changed, 1 insertions, 0 deletions
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