5363 - Memory leak of joystick->sensors in SDL_JoystickClose

Mathieu Eyraud

Joystick->sensors is never freed.
Sam Lantinga 2020-11-24 06:40:13 -08:00
parent 34bea84a54
commit feab9d42c1
1 changed files with 1 additions and 0 deletions

View File

@ -1036,6 +1036,7 @@ SDL_JoystickClose(SDL_Joystick *joystick)
SDL_free(touchpad->fingers);
}
SDL_free(joystick->touchpads);
SDL_free(joystick->sensors);
SDL_free(joystick);
SDL_UnlockJoysticks();