[libvirt] [PATCH 04/13] vport_profile_conf: Resolve memory leak found by Valgrind

John Ferlan jferlan at redhat.com
Wed Feb 6 21:35:38 UTC 2013


The 'virtPortInterfaceID' was not VIR_FREE()'d
---
 src/conf/netdev_vport_profile_conf.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/conf/netdev_vport_profile_conf.c b/src/conf/netdev_vport_profile_conf.c
index 701e17e..47f51f9 100644
--- a/src/conf/netdev_vport_profile_conf.c
+++ b/src/conf/netdev_vport_profile_conf.c
@@ -198,6 +198,7 @@ cleanup:
     VIR_FREE(virtPortInstanceID);
     VIR_FREE(virtPortProfileID);
     VIR_FREE(virtPortType);
+    VIR_FREE(virtPortInterfaceID);
 
     return virtPort;
 
-- 
1.7.11.7




More information about the libvir-list mailing list