From: Luca Boccassi Date: Thu, 4 Jan 2024 11:44:31 +0000 (+0100) Subject: core: add an assert to guide static analysis X-Git-Tag: v256-rc1~1285^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c658ad79f0ca15a4c8be23744e6ee9d34b1ab2b8;p=thirdparty%2Fsystemd.git core: add an assert to guide static analysis Follow-up for 4fb0d2dc140c9a2c01c236d2a8dc09a44157e896 CID#1533110 --- diff --git a/src/core/cgroup.c b/src/core/cgroup.c index e8ba01037ab..3cd0490255e 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -4572,7 +4572,7 @@ static uint64_t unit_get_effective_limit_one(Unit *u, CGroupLimitType type) { assert_not_reached(); } - cc = unit_get_cgroup_context(u); + cc = ASSERT_PTR(unit_get_cgroup_context(u)); switch (type) { /* Note: on legacy/hybrid hierarchies memory_max stays CGROUP_LIMIT_MAX unless configured * explicitly. Effective value of MemoryLimit= (cgroup v1) is not implemented. */