From: Gonglei Date: Wed, 4 Jun 2014 08:31:47 +0000 (+0800) Subject: usb-ohci: Fix memory leak for ohci timer X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=80be63df5a19816629343f704345b71e83e6d960;p=qemu.git usb-ohci: Fix memory leak for ohci timer Signed-off-by: Gonglei Signed-off-by: Gerd Hoffmann --- diff --git a/hw/usb/hcd-ohci.c b/hw/usb/hcd-ohci.c index cacf7b054c..5505f0ac53 100644 --- a/hw/usb/hcd-ohci.c +++ b/hw/usb/hcd-ohci.c @@ -1371,8 +1371,10 @@ static int ohci_bus_start(OHCIState *ohci) /* Stop sending SOF tokens on the bus */ static void ohci_bus_stop(OHCIState *ohci) { - if (ohci->eof_timer) + if (ohci->eof_timer) { timer_del(ohci->eof_timer); + timer_free(ohci->eof_timer); + } ohci->eof_timer = NULL; }