[libvirt] [PATCH 3/5] phyp: Don't try to use a string from a failed virAsprintf

Matthias Bolte matthias.bolte at googlemail.com
Sat Apr 9 09:59:09 UTC 2011


---
 src/phyp/phyp_driver.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/phyp/phyp_driver.c b/src/phyp/phyp_driver.c
index f441261..24165fb 100644
--- a/src/phyp/phyp_driver.c
+++ b/src/phyp/phyp_driver.c
@@ -210,7 +210,7 @@ phypGetSystemType(virConnectPtr conn)
 
     if (virAsprintf(&cmd, "lshmc -V") < 0) {
         virReportOOMError();
-        exit_status = -1;
+        return -1;
     }
     ret = phypExec(session, cmd, &exit_status, conn);
 
-- 
1.7.0.4




More information about the libvir-list mailing list