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:
authorPatrick Steinhardt <ps@pks.im>2015-11-24 16:38:17 +0300
committerPatrick Steinhardt <ps@pks.im>2015-11-24 17:21:52 +0300
commit9031be180b67b50a14cacae7ff9a8b5216ca1e8a (patch)
tree64ebed6398de52f73693105d9d3470b6daa99c8f /tests/config
parentc8fab201ebbb9d3c871a7ca426e780b90271a8e0 (diff)
tests: config::stress: free `git_config` structs
Diffstat (limited to 'tests/config')
-rw-r--r--tests/config/stress.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/config/stress.c b/tests/config/stress.c
index 6e960425c..a6b665590 100644
--- a/tests/config/stress.c
+++ b/tests/config/stress.c
@@ -126,4 +126,7 @@ void test_config_stress__quick_write(void)
cl_git_pass(git_config_get_int32(&val, config_r, key));
cl_assert_equal_i(i, val);
}
+
+ git_config_free(config_r);
+ git_config_free(config_w);
}