]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolved: remove inappropriate assert()
authorLennart Poettering <lennart@poettering.net>
Thu, 24 Nov 2022 17:42:08 +0000 (18:42 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 24 Nov 2022 22:49:04 +0000 (07:49 +0900)
A NULL Bitmap object is by all our code considered identical to an empty
bitmap. Hence let's remove the entirely unnecessary assert().

The assert() can be triggered if debug monitoring is used an an empty
NSEC or NSEC3 RR is included in an answer resolved returns.

it's not really a security issue since enabling debug monitoring is a
manual step requiring root privileges, that is off by default. Moreover,
it's a "clean" assert(), i.e. the worst that happens is tha a coredump
is generated and resolved restarted.

Fixes: #25449
src/resolve/resolved-dns-rr.c

index 8123ca1f98ed28fafd7b2965bc106fa539545398..d47cdbbd8e2753637831f3824079f5ac22bfcaf4 100644 (file)
@@ -1865,7 +1865,6 @@ static int type_bitmap_to_json(Bitmap *b, JsonVariant **ret) {
         unsigned t;
         int r;
 
-        assert(b);
         assert(ret);
 
         BITMAP_FOREACH(t, b) {