[libvirt] [PATCH] Need to call virFreeError after virSaveLastError

John Ferlan jferlan at redhat.com
Tue Apr 30 17:55:37 UTC 2013


This is a followup to 

https://www.redhat.com/archives/libvir-list/2013-April/msg02004.html

which noted that bridge_driver.c also had a missing virFreeError() call

---
 src/network/bridge_driver.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/network/bridge_driver.c b/src/network/bridge_driver.c
index 19c9bdb..8da28e4 100644
--- a/src/network/bridge_driver.c
+++ b/src/network/bridge_driver.c
@@ -2141,6 +2141,7 @@ err:
 
     /* return the original error */
     virSetError(orig_error);
+    virFreeError(orig_error);
     return -1;
 }
 
-- 
1.8.1.4




More information about the libvir-list mailing list