summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/usb-backend.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/usb-backend.c b/src/usb-backend.c
index 930ae4e..e4b5579 100644
--- a/src/usb-backend.c
+++ b/src/usb-backend.c
@@ -122,7 +122,9 @@ static gboolean fill_usb_info(SpiceUsbDevice *dev)
get_usb_device_info_from_libusb_device(info, dev->libusb_device);
if (info->address == 0xff || /* root hub (HCD) */
+#ifdef G_OS_WIN32
info->address <= 1 || /* root hub or bad address */
+#endif
(info->class == LIBUSB_CLASS_HUB) /*hub*/) {
return FALSE;
}