[systemd-commits] src/core

Zbigniew Jędrzejewski-Szmek zbyszek at kemper.freedesktop.org
Thu Jan 17 06:32:03 PST 2013


 src/core/unit.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8755586eba8b824851f11aa6c3f8f184ed69a30a
Author: Nestor Ovroy <novroy at riseup.net>
Date:   Thu Jan 17 05:55:30 2013 -0800

    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.

diff --git a/src/core/unit.c b/src/core/unit.c
index 1194c52..d26f6e4 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);



More information about the systemd-commits mailing list