From c710d3b4301cffafcd1bded7519176703d3e65c0 Mon Sep 17 00:00:00 2001 From: Chris Down Date: Fri, 7 Jun 2019 06:28:10 +0100 Subject: [PATCH] cgroup: Prevent theoretical nullptr deref in unit mask calculation --- src/core/cgroup.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/cgroup.c b/src/core/cgroup.c index a7263855dca..0c885d57440 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -1378,6 +1378,8 @@ static CGroupMask unit_get_cgroup_mask(Unit *u) { c = unit_get_cgroup_context(u); + assert(c); + /* Figure out which controllers we need, based on the cgroup context object */ if (c->cpu_accounting)