memdelete 'joy_thread' + 'joy_mutex' on ::~joystick_linux()

This commit is contained in:
MSC 2016-04-03 19:24:39 +02:00 committed by Rémi Verschelde
parent 7a9998370f
commit 391095e0ef

View file

@ -89,6 +89,8 @@ joystick_linux::joystick_linux(InputDefault *in)
joystick_linux::~joystick_linux() { joystick_linux::~joystick_linux() {
exit_udev = true; exit_udev = true;
Thread::wait_to_finish(joy_thread); Thread::wait_to_finish(joy_thread);
memdelete(joy_thread);
memdelete(joy_mutex);
close_joystick(); close_joystick();
} }