From 8755586eba8b824851f11aa6c3f8f184ed69a30a Mon Sep 17 00:00:00 2001 From: Nestor Ovroy Date: Thu, 17 Jan 2013 05:55:30 -0800 Subject: [PATCH] core: corrects check of strduped controller string In commit 246aa6d (core: add bus API and systemctl commands for altering cgroup parameters during runtime), when rewriting unit_add_one_default_cgroup to prefered style, the check of strduped b->controller was incorrectly changed to check the containing structure. Correct it. --- src/core/unit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/unit.c b/src/core/unit.c index 1194c524b..d26f6e456 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2090,7 +2090,7 @@ static int unit_add_one_default_cgroup(Unit *u, const char *controller) { return -ENOMEM; b->controller = strdup(controller); - if (!b) + if (!b->controller) goto fail; b->path = unit_default_cgroup_path(u); -- 2.30.2