From: Zbigniew Jędrzejewski-Szmek Date: Thu, 21 Sep 2017 10:02:49 +0000 (+0200) Subject: test-conf-parser: use _cleanup_ X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=bb37bf113ec83d58e6b6225e0b0f74deb638f85b;p=elogind.git test-conf-parser: use _cleanup_ --- diff --git a/src/test/test-conf-parser.c b/src/test/test-conf-parser.c index 54aec7ee2..ef8a85a47 100644 --- a/src/test/test-conf-parser.c +++ b/src/test/test-conf-parser.c @@ -25,12 +25,10 @@ #include "util.h" static void test_config_parse_path_one(const char *rvalue, const char *expected) { - char *path = NULL; + _cleanup_free_ char *path = NULL; assert_se(config_parse_path("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &path, NULL) >= 0); assert_se(streq_ptr(expected, path)); - - free(path); } static void test_config_parse_log_level_one(const char *rvalue, int expected) { @@ -80,12 +78,10 @@ static void test_config_parse_unsigned_one(const char *rvalue, unsigned expected } static void test_config_parse_strv_one(const char *rvalue, char **expected) { - char **strv = 0; + _cleanup_strv_free_ char **strv = NULL; assert_se(config_parse_strv("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &strv, NULL) >= 0); assert_se(strv_equal(expected, strv)); - - strv_free(strv); } static void test_config_parse_mode_one(const char *rvalue, mode_t expected) {