From c658ad79f0ca15a4c8be23744e6ee9d34b1ab2b8 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Thu, 4 Jan 2024 12:44:31 +0100 Subject: [PATCH] core: add an assert to guide static analysis Follow-up for 4fb0d2dc140c9a2c01c236d2a8dc09a44157e896 CID#1533110 --- src/core/cgroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.47.3