On 10/21/14 12:25, Martin Kletzander wrote:
Commit 60627f6d added the code that requests driver cfg, but forgot
to
Commit ID doesn't exist in libvirt.git
unref it.
Signed-off-by: Martin Kletzander <mkletzan(a)redhat.com>
---
src/qemu/qemu_cgroup.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/qemu/qemu_cgroup.c b/src/qemu/qemu_cgroup.c
index fa894c5..b5bdb36 100644
--- a/src/qemu/qemu_cgroup.c
+++ b/src/qemu/qemu_cgroup.c
@@ -1222,6 +1222,8 @@ qemuRemoveCgroup(virQEMUDriverPtr driver,
VIR_DEBUG("Failed to terminate cgroup for %s",
vm->def->name);
}
+ virObjectUnref(cfg);
+
return virCgroupRemove(priv->cgroup);
}
ACK with the commit ID tweaked.
Peter