[libvirt] [PATCH] Remove a couple of misplaced VIR_FREE

John Ferlan jferlan at redhat.com
Wed Feb 20 18:01:18 UTC 2013


While working on the hellolibvirt example code, I stumbled across a
couple extraneous VIR_FREE()'s in qemuStop(). I was looking at all
callers of virConnectListAllDomains()...

---
 src/qemu/qemu_driver.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
index be01ec6..45bd341 100644
--- a/src/qemu/qemu_driver.c
+++ b/src/qemu/qemu_driver.c
@@ -920,9 +920,6 @@ qemuStop(void) {
         if (virDomainManagedSave(domains[i], flags[i]) < 0)
             ret = -1;
 
-    VIR_FREE(domains);
-    VIR_FREE(flags);
-
  cleanup:
     for (i = 0 ; i < numDomains ; i++)
         virDomainFree(domains[i]);
-- 
1.7.11.7




More information about the libvir-list mailing list