diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2012-03-15 11:29:56 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-03-16 13:17:06 -0500 |
commit | e5ab1404d014cefe22e9a10fca00d0acf4fe412b (patch) | |
tree | 38eb5da7dcb7af1d1b2c43b8b1a1185feb9ea1ca /hw/pci.c | |
parent | ae7d54d489540b49b7c13a7df7ddc220588a2ced (diff) | |
download | qemu-e5ab1404d014cefe22e9a10fca00d0acf4fe412b.zip qemu-e5ab1404d014cefe22e9a10fca00d0acf4fe412b.tar.gz qemu-e5ab1404d014cefe22e9a10fca00d0acf4fe412b.tar.bz2 |
pci: fix double free of romfile property
The qdev property release function frees any string properties. This was
resulting in a double free during hot unplug.
It manifests in network devices because block devices have a NULL romfile
property by default.
Cc: Michael Tsirkin <mst@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pci.c')
-rw-r--r-- | hw/pci.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -841,7 +841,6 @@ static int pci_unregister_device(DeviceState *dev) pci_unregister_io_regions(pci_dev); pci_del_option_rom(pci_dev); - g_free(pci_dev->romfile); do_pci_unregister_device(pci_dev); return 0; } |