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:
authorCarlos Martín Nieto <cmn@elego.de>2012-07-21 19:54:56 +0400
committerCarlos Martín Nieto <cmn@elego.de>2012-07-21 19:55:35 +0400
commit14e1bc157a06d4513ce4193e6100a338432b3c88 (patch)
treed81362a9bb341276c50bceaa7305476c20190a21 /tests-clar/config
parent5b786963341debf4db7b2984ee4c9bd0c9948764 (diff)
tests: plug a leak in the config stress
Diffstat (limited to 'tests-clar/config')
-rw-r--r--tests-clar/config/stress.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests-clar/config/stress.c b/tests-clar/config/stress.c
index 8fbc8b97c..6e7db6e8f 100644
--- a/tests-clar/config/stress.c
+++ b/tests-clar/config/stress.c
@@ -80,4 +80,5 @@ void test_config_stress__escape_subsection_names(void)
cl_git_pass(git_config_get_string(&str, config, "some.sec\\tion.other"));
cl_assert(!strcmp("foo", str));
+ git_config_free(config);
}