tests: fix memory leak in test_strv_fnmatch (#3653)

==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==
This commit is contained in:
Evgeny Vereshchagin 2016-07-04 11:11:07 +03:00 committed by Martin Pitt
parent 92d5a606ea
commit 57681e84ce
1 changed files with 1 additions and 1 deletions

View 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));