1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-20 18:04:03 +03:00

systemctl: add missing OOM check

This commit is contained in:
Lennart Poettering 2018-10-13 14:34:56 +02:00
parent fd8879498d
commit 8b7ec7bbfa

View File

@ -3070,9 +3070,11 @@ static int start_unit(int argc, char *argv[], void *userdata) {
one_name = action_table[arg_action].target;
}
if (one_name)
if (one_name) {
names = strv_new(one_name, NULL);
else {
if (!names)
return log_oom();
} else {
r = expand_names(bus, strv_skip(argv, 1), suffix, &names);
if (r < 0)
return log_error_errno(r, "Failed to expand names: %m");