| Submitter | Gerd Hoffmann |
|---|---|
| Date | Feb. 28, 2012, 10:20 a.m. |
| Message ID | <1330424430-23015-21-git-send-email-kraxel@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/143389/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/usb-redir.c b/usb-redir.c index d905463..755492f 100644 --- a/usb-redir.c +++ b/usb-redir.c @@ -548,7 +548,10 @@ static int usbredir_handle_interrupt_data(USBRedirDevice *dev, /* Check interrupt_error for stream errors */ status = dev->endpoint[EP2I(ep)].interrupt_error; dev->endpoint[EP2I(ep)].interrupt_error = 0; - return usbredir_handle_status(dev, status, 0); + if (status) { + return usbredir_handle_status(dev, status, 0); + } + return USB_RET_NAK; } DPRINTF("interrupt-token-in ep %02X status %d len %d\n", ep, intp->status, intp->len);