From 7c1c15a7fb86ff1422e1adcfceb9dbb7555a8449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Wed, 13 Apr 2011 21:55:43 +0200 Subject: [PATCH] tests: free the test suite name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Martín Nieto --- tests/test_lib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_lib.c b/tests/test_lib.c index c9c6141c6..5778404c1 100755 --- a/tests/test_lib.c +++ b/tests/test_lib.c @@ -130,6 +130,7 @@ static void free_suite(git_testsuite *ts) if (ts->list[n]) test_free(ts->list[n]); + free(ts->name); free(ts); }