[libvirt] [PATCH] cpu: Fix segfault in the ppc64 driver

Andrea Bolognani abologna at redhat.com
Tue Aug 11 15:53:24 UTC 2015


Commit adb865d introduced some changes in ppc64DriverNodeData()
that cause libvirtd to crash on startup unless this patch is
applied as well.
---
 src/cpu/cpu_ppc64.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cpu/cpu_ppc64.c b/src/cpu/cpu_ppc64.c
index 33fec8b..85aa5bc 100644
--- a/src/cpu/cpu_ppc64.c
+++ b/src/cpu/cpu_ppc64.c
@@ -628,7 +628,7 @@ ppc64DriverNodeData(virArch arch)
     if (VIR_ALLOC(nodeData) < 0)
         goto error;
 
-    if (VIR_ALLOC(data) < 0)
+    if (VIR_ALLOC(nodeData->data.ppc64) < 0)
         goto error;
 
     data = nodeData->data.ppc64;
-- 
2.4.3




More information about the libvir-list mailing list