From 14e1bc157a06d4513ce4193e6100a338432b3c88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Sat, 21 Jul 2012 17:54:56 +0200 Subject: [PATCH] tests: plug a leak in the config stress --- tests-clar/config/stress.c | 1 + 1 file changed, 1 insertion(+) 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); }