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:
authorVicent Martí <tanoku@gmail.com>2011-07-14 05:03:12 +0400
committerVicent Martí <tanoku@gmail.com>2011-07-14 05:03:12 +0400
commit324f0eecb63da00e26977f3fe7561756df91b2d2 (patch)
treed136aa1d7a55eb32006e3fd890bf8e714fad89e0 /tests
parent18bdba0e1a1777f01f13ba24ed4c79e438aea218 (diff)
parent1a8167afbc2554677383b4275b37cc7c7ca61478 (diff)
Merge pull request #325 from carlosmn/valgrind
More memory leaks
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