From 42b977810d31585656ba475c86a31976e1e1f310 Mon Sep 17 00:00:00 2001 From: Zbigniew Jędrzejewski-Szmek Date: Sat, 28 Mar 2020 12:46:52 +0100 Subject: test-strv: add missing oom check CID#1420259. --- src/test/test-strv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test') diff --git a/src/test/test-strv.c b/src/test/test-strv.c index dd6233175c..68c128cf80 100644 --- a/src/test/test-strv.c +++ b/src/test/test-strv.c @@ -674,7 +674,7 @@ static void test_strv_push_prepend(void) { log_info("/* %s */", __func__); - a = strv_new("foo", "bar", "three"); + assert_se(a = strv_new("foo", "bar", "three")); assert_se(strv_push_prepend(&a, strdup("first")) >= 0); assert_se(streq(a[0], "first")); -- cgit v1.2.3