[libvirt] [PATCH 1/5] daemon: avoid memory leak

ajia at redhat.com ajia at redhat.com
Sun Sep 18 16:36:10 UTC 2011


* daemon/remote.c: fix memory leak.

Signed-off-by: Alex Jia <ajia at redhat.com>
---
 daemon/remote.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/daemon/remote.c b/daemon/remote.c
index 38bbb10..45244f8 100644
--- a/daemon/remote.c
+++ b/daemon/remote.c
@@ -997,6 +997,8 @@ cleanup:
             VIR_FREE(ret->params.params_val);
         }
     }
+    if (dom)
+        virDomainFree(dom);
     VIR_FREE(params);
     return rv;
 }
-- 
1.7.1




More information about the libvir-list mailing list