From: Hans de Goede Date: Fri, 27 May 2011 12:46:27 +0000 (+0200) Subject: usb-bus: Don't allow attaching a device to a bus with no free ports X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ee210d6390761bb0fd6febe0fb8f94ee0dcba0db;p=qemu.git usb-bus: Don't allow attaching a device to a bus with no free ports Signed-off-by: Gerd Hoffmann --- diff --git a/hw/usb-bus.c b/hw/usb-bus.c index 480956dfcf..0a49921c0c 100644 --- a/hw/usb-bus.c +++ b/hw/usb-bus.c @@ -181,6 +181,11 @@ static void do_attach(USBDevice *dev) dev->product_desc); return; } + if (bus->nfree == 0) { + fprintf(stderr, "Warning: tried to attach usb device %s to a bus with no free ports\n", + dev->product_desc); + return; + } if (dev->port_path) { QTAILQ_FOREACH(port, &bus->free, next) { if (strcmp(port->path, dev->port_path) == 0) {