diff --git a/hw/usb/hcd-ohci.c b/hw/usb/hcd-ohci.c index cacf7b054c49309774e292fd7b0b3de43afbea65..5505f0ac53467b28451e227e5a188246d9856853 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; }