From: Lennart Poettering Date: Thu, 1 Oct 2015 12:27:20 +0000 (+0200) Subject: systemctl: fix how we decode types and states X-Git-Tag: v227~39^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e9d36e06b85d87eb2c3aed507fe3aa1574c7880;p=thirdparty%2Fsystemd.git systemctl: fix how we decode types and states There was a bad memory access among other smaller issues. --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 0615dd6aa5f..420a246be15 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -6648,7 +6648,7 @@ static int systemctl_parse_argv(int argc, char *argv[]) { } if (unit_type_from_string(type) >= 0) { - if (strv_push(&arg_types, type)) + if (strv_push(&arg_types, type) < 0) return log_oom(); type = NULL; continue; @@ -6658,7 +6658,7 @@ static int systemctl_parse_argv(int argc, char *argv[]) { * load states, but let's support this * in --types= too for compatibility * with old versions */ - if (unit_load_state_from_string(optarg) >= 0) { + if (unit_load_state_from_string(type) >= 0) { if (strv_push(&arg_states, type) < 0) return log_oom(); type = NULL; @@ -6871,8 +6871,10 @@ static int systemctl_parse_argv(int argc, char *argv[]) { return 0; } - if (strv_consume(&arg_states, s) < 0) + if (strv_push(&arg_states, s) < 0) return log_oom(); + + s = NULL; } break; }