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.
This commit is contained in:
Romain Vimont 2022-01-23 12:31:05 +01:00
parent 7e35bfe382
commit 241a587e61

View file

@ -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) {