Fix PCI IRQ breakage
authorPaul Brook <paul@codesourcery.com>
Sat, 11 Jul 2009 21:46:05 +0000 (22:46 +0100)
committerPaul Brook <paul@codesourcery.com>
Sat, 11 Jul 2009 21:46:51 +0000 (22:46 +0100)
Zero initialize the PCI bus irq count.

Signed-off-by: Paul Brook <paul@codesourcery.com>
hw/pci.c

index f592925..a6fb957 100644 (file)
--- a/hw/pci.c
+++ b/hw/pci.c
@@ -123,7 +123,7 @@ PCIBus *pci_register_bus(DeviceState *parent, const char *name,
     bus->irq_opaque = pic;
     bus->devfn_min = devfn_min;
     bus->nirq = nirq;
-    bus->irq_count = qemu_malloc(nirq * sizeof(bus->irq_count[0]));
+    bus->irq_count = qemu_mallocz(nirq * sizeof(bus->irq_count[0]));
     bus->next = first_bus;
     first_bus = bus;
     register_savevm("PCIBUS", nbus++, 1, pcibus_save, pcibus_load, bus);