Commit 8bfcb981 by Dwight Engen Committed by Serge Hallyn

valgrind: fix small leak in cgroup

parent a2ff31c7
...@@ -1614,6 +1614,7 @@ void lxc_cgroup_hierarchy_free(struct cgroup_hierarchy *h) ...@@ -1614,6 +1614,7 @@ void lxc_cgroup_hierarchy_free(struct cgroup_hierarchy *h)
if (!h) if (!h)
return; return;
lxc_free_array((void **)h->subsystems, free); lxc_free_array((void **)h->subsystems, free);
free(h->all_mount_points);
free(h); free(h);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment