commit | c19537a1143d493897850576394f082914f39ef1 | [log] [tgz] |
---|---|---|
author | Gerd Hoffmann <kraxel@redhat.com> | Thu Aug 09 10:57:32 2012 +0200 |
committer | Gerd Hoffmann <kraxel@redhat.com> | Thu Aug 16 08:39:49 2012 +0200 |
tree | 29a3fff48cb7c86e1f6b474f9876d0c9062b16de | |
parent | 2b97f88c927be3ff3722497980048bc1cb7cc571 [diff] [blame] |
usb: async control xfer fixup Need to clear p->result after copying setup data using usb_packet_copy() because we'll reuse the USBPacket for the data transfer. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
diff --git a/hw/usb/core.c b/hw/usb/core.c index 01a7622..c7e5bc0 100644 --- a/hw/usb/core.c +++ b/hw/usb/core.c
@@ -107,6 +107,7 @@ } usb_packet_copy(p, s->setup_buf, p->iov.size); + p->result = 0; s->setup_len = (s->setup_buf[7] << 8) | s->setup_buf[6]; s->setup_index = 0;