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
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2013-07-13 16:00:05 +0400
committernulltoken <emeric.fermas@gmail.com>2013-07-13 16:14:43 +0400
commitd6cb13d7436793718f103687fe95d0f881487ad0 (patch)
treec84b5ffaacae178d6d6537f6f021e9217049bcaf /tests-clar/diff
parentb3a559ddce5e23d7084546ca771fc16e96d24ed8 (diff)
tests: Fix memory leak
Diffstat (limited to 'tests-clar/diff')
-rw-r--r--tests-clar/diff/pathspec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests-clar/diff/pathspec.c b/tests-clar/diff/pathspec.c
index 4334a8901..7b15ea04c 100644
--- a/tests-clar/diff/pathspec.c
+++ b/tests-clar/diff/pathspec.c
@@ -89,4 +89,5 @@ void test_diff_pathspec__0(void)
git_tree_free(a);
git_tree_free(b);
+ git_pathspec_free(ps);
}