diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-04-08 18:22:47 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-04-08 18:22:47 +0200 |
commit | 974efc46586854b1f23ccf153b36199c77919de6 (patch) | |
tree | c8bfec230889655c876667cfba5ddf6036ff8335 /src/core/cgroup.c | |
parent | d82d87dac1233ddd109437844321645be5bcd4cb (diff) |
cgroup: always keep access mode of 'tasks' and 'cgroup.procs' files in cgroup directories in sync
Diffstat (limited to 'src/core/cgroup.c')
-rw-r--r-- | src/core/cgroup.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/cgroup.c b/src/core/cgroup.c index 8fb2952c16..b07bd7e6be 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -111,7 +111,7 @@ void cgroup_bonding_trim_list(CGroupBonding *first, bool delete_root) { } int cgroup_bonding_install(CGroupBonding *b, pid_t pid, const char *cgroup_suffix) { - char *p = NULL; + _cleanup_free_ char *p = NULL; const char *path; int r; @@ -128,8 +128,6 @@ int cgroup_bonding_install(CGroupBonding *b, pid_t pid, const char *cgroup_suffi path = b->path; r = cg_create_and_attach(b->controller, path, pid); - free(p); - if (r < 0) return r; |