From 35c30522a5720bc4c61f2afef230915ecae75720 Mon Sep 17 00:00:00 2001 From: John Ferlan Date: Tue, 22 Jan 2013 09:15:50 -0500 Subject: [PATCH] tests: Need to initialize 'test' properly on error path In the error path, the test buffer is free'd, but due to how the free routine is written the 'test' buffer pointer does not return to the caller as NULL and then the free'd buffer address is returned to the caller. --- tests/qemumonitortestutils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/qemumonitortestutils.c b/tests/qemumonitortestutils.c index eb9174df5f..d1b2ab5b05 100644 --- a/tests/qemumonitortestutils.c +++ b/tests/qemumonitortestutils.c @@ -536,6 +536,7 @@ no_memory: error: VIR_FREE(tmpdir_template); qemuMonitorTestFree(test); + test = NULL; goto cleanup; }