From: Zbigniew Jędrzejewski-Szmek Date: Thu, 7 Mar 2019 09:56:38 +0000 (+0100) Subject: test-execute: avoid undefined variable warning when compiled w/o seccomp X-Git-Tag: v242-rc1~184^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2bd061a48b367dc82f11615b5b7422969e2de674;p=thirdparty%2Fsystemd.git test-execute: avoid undefined variable warning when compiled w/o seccomp --- diff --git a/src/test/test-execute.c b/src/test/test-execute.c index 19571121593..b34b207a408 100644 --- a/src/test/test-execute.c +++ b/src/test/test-execute.c @@ -714,7 +714,6 @@ static int run_tests(UnitFileScope scope, const test_function_t *tests) { int main(int argc, char *argv[]) { _cleanup_(rm_rf_physical_and_freep) char *runtime_dir = NULL; _cleanup_free_ char *test_execute_path = NULL; - _cleanup_hashmap_free_ Hashmap *s = NULL; static const test_function_t user_tests[] = { test_exec_basic, test_exec_ambientcapabilities, @@ -812,6 +811,7 @@ int main(int argc, char *argv[]) { return 0; } + _cleanup_hashmap_free_ Hashmap *s = NULL; assert_se(s = hashmap_new(NULL)); r = seccomp_syscall_resolve_name("unshare"); assert_se(r != __NR_SCMP_ERROR);