From: Lennart Poettering Date: Tue, 23 Jul 2019 08:12:25 +0000 (+0200) Subject: logind: add missing OOM check in client tool X-Git-Tag: v243-rc1~56^2~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1b5e34fe96975d3b9a7811e986dfdbef50232217;p=thirdparty%2Fsystemd.git logind: add missing OOM check in client tool --- diff --git a/src/login/inhibit.c b/src/login/inhibit.c index d96c8195a28..25ff4d0be64 100644 --- a/src/login/inhibit.c +++ b/src/login/inhibit.c @@ -284,7 +284,6 @@ static int run(int argc, char *argv[]) { if (arg_action == ACTION_LIST) return print_inhibitors(bus); - else { _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL; _cleanup_strv_free_ char **arguments = NULL; @@ -295,8 +294,13 @@ static int run(int argc, char *argv[]) { /* Ignore SIGINT and allow the forked process to receive it */ (void) ignore_signals(SIGINT, -1); - if (!arg_who) - arg_who = w = strv_join(argv + optind, " "); + if (!arg_who) { + w = strv_join(argv + optind, " "); + if (!w) + return log_oom(); + + arg_who = w; + } if (!arg_mode) arg_mode = "block";