From 442d81d00308b0145307b175a1910c7443184a3f Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Sat, 31 Mar 2012 13:12:09 +0200 Subject: [PATCH 145/146] usb-redir: Reset device address and speed on disconnect Without this disconnected devices look like the last redirected device in the monitor in "info usb". Signed-off-by: Hans de Goede --- usb-redir.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usb-redir.c b/usb-redir.c index 3187b68..1a9d766 100644 --- a/usb-redir.c +++ b/usb-redir.c @@ -1160,6 +1160,8 @@ static void usbredir_device_disconnect(void *priv) QTAILQ_INIT(&dev->endpoint[i].bufpq); } dev->interface_info.interface_count = NO_INTERFACE_INFO; + dev->dev.addr = 0; + dev->dev.speed = 0; } static void usbredir_interface_info(void *priv, -- 1.7.9.3