From d3600505b1a7736fed812b7a3f84ba04f0459fa2 Mon Sep 17 00:00:00 2001 From: Ján Tomko Date: Tue, 3 Sep 2013 13:43:05 +0200 Subject: Fix leaks in python bindings https://bugzilla.redhat.com/show_bug.cgi?id=1003828 (cherry picked from commit 418137663f1ca0877a176b996ac027d89747fe90) --- libvirt-qemu-override.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libvirt-qemu-override.c') diff --git a/libvirt-qemu-override.c b/libvirt-qemu-override.c index 8f1ce5e..6249031 100644 --- a/libvirt-qemu-override.c +++ b/libvirt-qemu-override.c @@ -21,6 +21,7 @@ #include #include "typewrappers.h" #include "libvirt-qemu.h" +#include "viralloc.h" #ifndef __CYGWIN__ extern void initlibvirtmod_qemu(void); @@ -79,6 +80,7 @@ libvirt_qemu_virDomainQemuMonitorCommand(PyObject *self ATTRIBUTE_UNUSED, return VIR_PY_NONE; py_retval = PyString_FromString(result); + VIR_FREE(result); return py_retval; } @@ -108,6 +110,7 @@ libvirt_qemu_virDomainQemuAgentCommand(PyObject *self ATTRIBUTE_UNUSED, PyObject return VIR_PY_NONE; py_retval = PyString_FromString(result); + VIR_FREE(result); return py_retval; } /************************************************************************ -- cgit