From aa1aad74e6b14730542c26a7c17c5d06c62b6089 Mon Sep 17 00:00:00 2001 From: Zbigniew Jędrzejewski-Szmek Date: Thu, 25 Dec 2014 10:52:38 -0500 Subject: run: uninitialized variable --- src/run/run.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'src/run') diff --git a/src/run/run.c b/src/run/run.c index b183e4e616..22abb0ebbb 100644 --- a/src/run/run.c +++ b/src/run/run.c @@ -423,16 +423,12 @@ static int transient_cgroup_set_properties(sd_bus_message *m) { } static int transient_kill_set_properties(sd_bus_message *m) { - int r; assert(m); - if (arg_send_sighup) { - r = sd_bus_message_append(m, "(sv)", "SendSIGHUP", "b", arg_send_sighup); - if (r < 0) - return r; - } - - return r; + if (arg_send_sighup) + return sd_bus_message_append(m, "(sv)", "SendSIGHUP", "b", arg_send_sighup); + else + return 0; } static int transient_service_set_properties(sd_bus_message *m, char **argv, const char *pty_path) { -- cgit v1.2.3-54-g00ecf