From: Corey Minyard Date: Mon, 24 Oct 2016 20:10:21 +0000 (-0500) Subject: acpi/ipmi: Initialize the fwinfo before fetching it X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=698ae42b9124dce23e03d0fea2e635b70540ef13;p=qemu.git acpi/ipmi: Initialize the fwinfo before fetching it The initialization was missed before, resulting in some bad data in the smbus case. Signed-off-by: Corey Minyard Cc: qemu-stable@nongnu.org Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- diff --git a/hw/acpi/ipmi.c b/hw/acpi/ipmi.c index 7e74ce4460..651e2e94ea 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)); }