From: Zbigniew Jędrzejewski-Szmek Date: Mon, 25 Apr 2016 01:50:25 +0000 (-0400) Subject: systemctl: rewrite code to explicitly take care of n_units==0 case X-Git-Tag: v230~70^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0da999fada225d2d74b62ec758cd437a3e2f6ebb;p=thirdparty%2Fsystemd.git systemctl: rewrite code to explicitly take care of n_units==0 case Coverity was complaing, but it was a false positive (CID #1354669). Nevertheless, it's better to rewrite the code so that units is never null. --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 7d0d4966d5d..75248c83b30 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -1422,8 +1422,8 @@ static int list_unit_files(int argc, char *argv[], void *userdata) { n_units = hashmap_size(h); - units = new(UnitFileList, n_units); - if (!units && n_units > 0) { + units = new(UnitFileList, n_units ?: 1); /* avoid malloc(0) */ + if (!units) { unit_file_list_free(h); return log_oom(); } @@ -1519,10 +1519,9 @@ static int list_unit_files(int argc, char *argv[], void *userdata) { qsort_safe(units, c, sizeof(UnitFileList), compare_unit_file_list); output_unit_file_list(units, c); - if (install_client_side()) { + if (install_client_side()) for (unit = units; unit < units + c; unit++) free(unit->path); - } return 0; }