From: "Daniel P. Berrange" <berrange(a)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(a)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