]> git.proxmox.com Git - qemu.git/commitdiff
hw/qdev: Don't crash if qdev_create(NULL, ...) fails
authorPeter Maydell <peter.maydell@linaro.org>
Wed, 3 Aug 2011 22:49:04 +0000 (23:49 +0100)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Thu, 11 Aug 2011 13:37:03 +0000 (14:37 +0100)
If an attempt to create a qdev device on the default sysbus (by passing
NULL as the bus to qdev_create) fails, print a useful error message
rather than crashing trying to dereference a NULL pointer.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
hw/qdev.c

index 6819537648f22694a9d14e1379b309706c0dd546..d8114c6d93a0e36405f5853dada7d8f492f8ffc7 100644 (file)
--- a/hw/qdev.c
+++ b/hw/qdev.c
@@ -111,7 +111,12 @@ DeviceState *qdev_create(BusState *bus, const char *name)
 
     dev = qdev_try_create(bus, name);
     if (!dev) {
-        hw_error("Unknown device '%s' for bus '%s'\n", name, bus->info->name);
+        if (bus) {
+            hw_error("Unknown device '%s' for bus '%s'\n", name,
+                     bus->info->name);
+        } else {
+            hw_error("Unknown device '%s' for default sysbus\n", name);
+        }
     }
 
     return dev;