From: Christian Hesse Date: Fri, 27 May 2016 07:33:27 +0000 (+0200) Subject: systemctl: fix code path (and memory leak) on error X-Git-Tag: v231~248^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85b78539c994984a6cbcc1095f126a1302db7808;p=platform%2Fupstream%2Fsystemd.git systemctl: fix code path (and memory leak) on error --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index f4cdfa9..86feefc 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -5514,7 +5514,7 @@ static int enable_unit(int argc, char *argv[], void *userdata) { unit_file_dump_changes(r, verb, changes, n_changes, arg_quiet); if (r < 0) - return r; + goto finish; r = 0; } else { _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL, *m = NULL; @@ -5606,7 +5606,7 @@ static int enable_unit(int argc, char *argv[], void *userdata) { r = bus_deserialize_and_dump_unit_file_changes(reply, arg_quiet, &changes, &n_changes); if (r < 0) - return r; + goto finish; /* Try to reload if enabled */ if (!arg_no_reload)