From e6f9e6b496fbba419f0f447fbee56a8464a4cc41 Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Thu, 16 Jul 2009 21:33:48 -0500 Subject: [PATCH] Initialize cpuid variables This causes a build break when !KVM. Signed-off-by: Anthony Liguori --- target-i386/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-i386/helper.c b/target-i386/helper.c index 690d7735ed..5f335331b1 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -297,7 +297,7 @@ static void host_cpuid(uint32_t function, uint32_t count, uint32_t *eax, static int cpu_x86_fill_model_id(char *str) { - uint32_t eax, ebx, ecx, edx; + uint32_t eax = 0, ebx = 0, ecx = 0, edx = 0; int i; for (i = 0; i < 3; i++) {