Fix missing HID mouse destructor call

The destructor unregisters the HID mouse, so it was not reported as a
leak, but it must still be called.
master
Romain Vimont 4 years ago
parent 7e35bfe382
commit 241a587e61

@ -598,6 +598,9 @@ end:
if (hid_keyboard_initialized) {
sc_hid_keyboard_destroy(&s->keyboard_hid);
}
if (hid_mouse_initialized) {
sc_hid_mouse_destroy(&s->mouse_hid);
}
sc_aoa_stop(&s->aoa);
}
if (acksync) {

Loading…
Cancel
Save