[libvirt] [PATCH 17/23] Avoid double free in qemuMonitorCommonTestInit on OOM

Daniel P. Berrange berrange at redhat.com
Wed Sep 25 14:51:12 UTC 2013


From: "Daniel P. Berrange" <berrange at redhat.com>

The qemuMonitorCommonTestInit method did not allocate the
test object, so it should not free it upon failure. Doing
so causes a double free with the caller.

Signed-off-by: Daniel P. Berrange <berrange at redhat.com>
---
 tests/qemumonitortestutils.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/qemumonitortestutils.c b/tests/qemumonitortestutils.c
index 763102c..9568476 100644
--- a/tests/qemumonitortestutils.c
+++ b/tests/qemumonitortestutils.c
@@ -849,7 +849,6 @@ qemuMonitorCommonTestInit(qemuMonitorTestPtr test)
     return 0;
 
 error:
-    qemuMonitorTestFree(test);
     return -1;
 }
 
-- 
1.8.3.1




More information about the libvir-list mailing list