diff options
author | Hans de Goede <hdegoede@redhat.com> | 2013-09-17 21:44:52 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-09-19 11:28:40 +0200 |
commit | 0ca6db4f3b3df5c4e5285a48a7709bdced5068de (patch) | |
tree | 19449da9ecf77d7deab38373c8ad989fda53996f /hw/usb | |
parent | 9adbaad318cddd300c42dbbbc88991cdc9cecd99 (diff) |
usb: Fix iovec memleak on combined-packet free
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb')
-rw-r--r-- | hw/usb/combined-packet.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/usb/combined-packet.c b/hw/usb/combined-packet.c index 13f6602ad2..ad77705f8c 100644 --- a/hw/usb/combined-packet.c +++ b/hw/usb/combined-packet.c @@ -39,6 +39,7 @@ static void usb_combined_packet_remove(USBCombinedPacket *combined, p->combined = NULL; QTAILQ_REMOVE(&combined->packets, p, combined_entry); if (QTAILQ_EMPTY(&combined->packets)) { + qemu_iovec_destroy(&combined->iov); g_free(combined); } } |