From: Frantisek Sumsal Date: Mon, 6 Dec 2021 16:45:37 +0000 (+0100) Subject: analyze,resolve: suppress a couple of false-positive alerts X-Git-Tag: v250-rc1~53^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F21646%2Fhead;p=thirdparty%2Fsystemd.git analyze,resolve: suppress a couple of false-positive alerts --- diff --git a/src/analyze/analyze.c b/src/analyze/analyze.c index 2293fcea6a4..b3e00581ed3 100644 --- a/src/analyze/analyze.c +++ b/src/analyze/analyze.c @@ -982,7 +982,7 @@ static int list_dependencies_one(sd_bus *bus, const char *name, unsigned level, return r; STRV_FOREACH(c, deps) { - times = hashmap_get(unit_times_hashmap, *c); + times = hashmap_get(unit_times_hashmap, *c); /* lgtm [cpp/inconsistent-null-check] */ if (times_in_range(times, boot) && times->activated >= service_longest) service_longest = times->activated; } @@ -991,7 +991,7 @@ static int list_dependencies_one(sd_bus *bus, const char *name, unsigned level, return r; STRV_FOREACH(c, deps) { - times = hashmap_get(unit_times_hashmap, *c); + times = hashmap_get(unit_times_hashmap, *c); /* lgtm [cpp/inconsistent-null-check] */ if (times_in_range(times, boot) && service_longest - times->activated <= arg_fuzz) to_print++; } @@ -1000,7 +1000,7 @@ static int list_dependencies_one(sd_bus *bus, const char *name, unsigned level, return r; STRV_FOREACH(c, deps) { - times = hashmap_get(unit_times_hashmap, *c); + times = hashmap_get(unit_times_hashmap, *c); /* lgtm [cpp/inconsistent-null-check] */ if (!times_in_range(times, boot) || service_longest - times->activated > arg_fuzz) continue; diff --git a/src/resolve/resolved-dns-answer.c b/src/resolve/resolved-dns-answer.c index 978d14818ab..479af69d0fc 100644 --- a/src/resolve/resolved-dns-answer.c +++ b/src/resolve/resolved-dns-answer.c @@ -170,7 +170,7 @@ int dns_answer_add( /* Entry already exists, keep the entry with the higher TTL. */ if (rr->ttl > exist->rr->ttl) { dns_resource_record_unref(exist->rr); - exist->rr = dns_resource_record_ref(rr); + exist->rr = dns_resource_record_ref(rr); /* lgtm [cpp/inconsistent-null-check] */ /* Update RRSIG and RR at the same time */ if (rrsig) {