[libvirt] [PATCH] tests: qemuhotplug: Fix memory leaks after cpu hotplug testing patches

Peter Krempa posted 1 patch 7 years, 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/5ae7b0d8af54b795bc801e5a42a8883dd2b9443c.1486047548.git.pkrempa@redhat.com
tests/qemuhotplugtest.c | 3 +++
1 file changed, 3 insertions(+)
[libvirt] [PATCH] tests: qemuhotplug: Fix memory leaks after cpu hotplug testing patches
Posted by Peter Krempa 7 years, 1 month ago
testQemuHotplugCpuDataFree leaked @data always and
testQemuHotplugCpuPrepare leaked @prefix on success
---

Pushed as trivial.

 tests/qemuhotplugtest.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/qemuhotplugtest.c b/tests/qemuhotplugtest.c
index 9a203bd44..8cceb883e 100644
--- a/tests/qemuhotplugtest.c
+++ b/tests/qemuhotplugtest.c
@@ -377,6 +377,7 @@ testQemuHotplugCpuDataFree(struct testQemuHotplugCpuData *data)

     virObjectUnref(data->vm);
     qemuMonitorTestFree(data->mon);
+    VIR_FREE(data);
 }


@@ -434,6 +435,8 @@ testQemuHotplugCpuPrepare(const char *test,
     if (qemuDomainRefreshVcpuInfo(&driver, data->vm, 0, false) < 0)
         goto error;

+    VIR_FREE(prefix);
+
     return data;

  error:
-- 
2.11.0

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list