From: David Tardon Date: Fri, 14 Apr 2023 08:08:31 +0000 (+0200) Subject: tree-wide: add some asserts X-Git-Tag: v254-rc1~719^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F27266%2Fhead;p=thirdparty%2Fsystemd.git tree-wide: add some asserts --- diff --git a/src/resolve/resolved-etc-hosts.c b/src/resolve/resolved-etc-hosts.c index 5eee9c57b2b..6acae48c2ba 100644 --- a/src/resolve/resolved-etc-hosts.c +++ b/src/resolve/resolved-etc-hosts.c @@ -285,6 +285,8 @@ int etc_hosts_parse(EtcHosts *hosts, FILE *f) { unsigned nr = 0; int r; + assert(hosts); + for (;;) { _cleanup_free_ char *line = NULL; char *l; diff --git a/src/shared/cpu-set-util.c b/src/shared/cpu-set-util.c index 580aa27c5c7..d096576cd6c 100644 --- a/src/shared/cpu-set-util.c +++ b/src/shared/cpu-set-util.c @@ -145,6 +145,8 @@ int parse_cpu_set_full( _cleanup_(cpu_set_reset) CPUSet c = {}; const char *p = ASSERT_PTR(rvalue); + assert(cpu_set); + for (;;) { _cleanup_free_ char *word = NULL; unsigned cpu_lower, cpu_upper; @@ -198,6 +200,8 @@ int parse_cpu_set_extend( _cleanup_(cpu_set_reset) CPUSet cpuset = {}; int r; + assert(old); + r = parse_cpu_set_full(rvalue, &cpuset, true, unit, filename, line, lvalue); if (r < 0) return r;