qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 7/7] acpi/ipmi: Initialize the fwinfo before fetchin


From: minyard
Subject: [Qemu-devel] [PATCH 7/7] acpi/ipmi: Initialize the fwinfo before fetching it
Date: Mon, 24 Oct 2016 15:10:21 -0500

From: Corey Minyard <address@hidden>

The initialization was missed before, resulting in some
bad data in the smbus case.

Signed-off-by: Corey Minyard <address@hidden>
---
 hw/acpi/ipmi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/acpi/ipmi.c b/hw/acpi/ipmi.c
index 7e74ce4..651e2e9 100644
--- a/hw/acpi/ipmi.c
+++ b/hw/acpi/ipmi.c
@@ -99,6 +99,7 @@ void build_acpi_ipmi_devices(Aml *scope, BusState *bus)
 
         ii = IPMI_INTERFACE(obj);
         iic = IPMI_INTERFACE_GET_CLASS(obj);
+        memset(&info, 0, sizeof(info));
         iic->get_fwinfo(ii, &info);
         aml_append(scope, aml_ipmi_device(&info));
     }
-- 
2.7.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]