Fixed memory leak in the pen cleanup
Fixes https://github.com/libsdl-org/SDL/issues/12099
This commit is contained in:
@@ -4294,7 +4294,9 @@ void SDL_VideoQuit(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Halt event processing before doing anything else
|
// Halt event processing before doing anything else
|
||||||
|
#if 0 // This was moved to the end to fix a memory leak
|
||||||
SDL_QuitPen();
|
SDL_QuitPen();
|
||||||
|
#endif
|
||||||
SDL_QuitTouch();
|
SDL_QuitTouch();
|
||||||
SDL_QuitMouse();
|
SDL_QuitMouse();
|
||||||
SDL_QuitKeyboard();
|
SDL_QuitKeyboard();
|
||||||
@@ -4325,6 +4327,9 @@ void SDL_VideoQuit(void)
|
|||||||
}
|
}
|
||||||
_this->free(_this);
|
_this->free(_this);
|
||||||
_this = NULL;
|
_this = NULL;
|
||||||
|
|
||||||
|
// This needs to happen after the video subsystem has removed pen data
|
||||||
|
SDL_QuitPen();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SDL_GL_LoadLibrary(const char *path)
|
bool SDL_GL_LoadLibrary(const char *path)
|
||||||
|
|||||||
Reference in New Issue
Block a user