From: "Daniel P. Berrange" <berrange(a)redhat.com>
Prior to the virArch changes, the CPU baseline method would
free the arch string in the returned CPU. Fix the regression
by setting arch to VIR_ARCH_NONE at the end
Pushed as a test breaker fix from virArch fallout
Signed-off-by: Daniel P. Berrange <berrange(a)redhat.com>
---
src/cpu/cpu_x86.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/cpu/cpu_x86.c b/src/cpu/cpu_x86.c
index 2001b99..cb21910 100644
--- a/src/cpu/cpu_x86.c
+++ b/src/cpu/cpu_x86.c
@@ -1715,6 +1715,8 @@ x86Baseline(virCPUDefPtr *cpus,
if (!outputVendor)
VIR_FREE(cpu->vendor);
+ cpu->arch = VIR_ARCH_NONE;
+
cleanup:
x86ModelFree(base_model);
x86MapFree(map);
--
1.7.11.7
Show replies by date