From 1b5e34fe96975d3b9a7811e986dfdbef50232217 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 23 Jul 2019 10:12:25 +0200 Subject: [PATCH] logind: add missing OOM check in client tool --- src/login/inhibit.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/login/inhibit.c b/src/login/inhibit.c index d96c819..25ff4d0 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"; -- 2.7.4