tree-wide: add some asserts

This commit is contained in:
David Tardon 2023-04-14 10:08:31 +02:00
parent 088d71f8ed
commit cfc28ee232
2 changed files with 6 additions and 0 deletions

View file

@ -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;

View file

@ -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;