Fixes #2417, memory leak in SDL_gamecontroller.c (thanks Leonardo!)

Gabriel Jacobo 2014-02-24 10:00:10 -03:00
parent 96f09df730
commit 2ed47d8369
1 changed files with 1 additions and 0 deletions

View File

@ -1223,6 +1223,7 @@ SDL_GameControllerQuit(void)
pControllerMap = s_pSupportedControllers;
s_pSupportedControllers = s_pSupportedControllers->next;
SDL_free( pControllerMap->name );
SDL_free( pControllerMap->mapping );
SDL_free( pControllerMap );
}