]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tests: fix memory leak in test_strv_fnmatch (#3653)
authorEvgeny Vereshchagin <evvers@ya.ru>
Mon, 4 Jul 2016 08:11:07 +0000 (11:11 +0300)
committerMartin Pitt <martin.pitt@ubuntu.com>
Mon, 4 Jul 2016 08:11:07 +0000 (10:11 +0200)
==1447== 4 bytes in 1 blocks are definitely lost in loss record 1 of 1
==1447==    at 0x4C2BBAD: malloc (vg_replace_malloc.c:299)
==1447==    by 0x5350F19: strdup (in /usr/lib64/libc-2.23.so)
==1447==    by 0x4E9D435: strv_new_ap (strv.c:166)
==1447==    by 0x4E9D5FA: strv_new (strv.c:199)
==1447==    by 0x10E665: test_strv_fnmatch (test-strv.c:693)
==1447==    by 0x10EAD5: main (test-strv.c:763)
==1447==

src/test/test-strv.c

index cf5887d25869760c9f9e72b95807f1e658d2bcc7..f7a1217df796f7e3cbe31a62ce9c31869b4a09b3 100644 (file)
@@ -686,7 +686,7 @@ static void test_foreach_string(void) {
 }
 
 static void test_strv_fnmatch(void) {
-        _cleanup_free_ char **v = NULL;
+        _cleanup_strv_free_ char **v = NULL;
 
         assert_se(!strv_fnmatch(STRV_MAKE_EMPTY, "a", 0));