Commit bbf32799 authored by Sam Lantinga's avatar Sam Lantinga

SDL_DestroyWindow is setting window->magic to NULL too early. -

window->magic is also checked in SDL_DestroyRenderer. All cleanup code
like freeing the renderer and textures is not executed.
The patch moves window_magic = NULL behind the SDL_DestroyRenderer call.

Kind regards,

André
parent 1af81c30
......@@ -1447,7 +1447,6 @@ SDL_DestroyWindow(SDL_Window * window)
SDL_VideoDisplay *display;
CHECK_WINDOW_MAGIC(window, );
window->magic = NULL;
if (window->title) {
SDL_free(window->title);
......@@ -1466,6 +1465,9 @@ SDL_DestroyWindow(SDL_Window * window)
SDL_GL_UnloadLibrary();
}
/* Now invalidate magic */
window->magic = NULL;
/* Unlink the window from the list */
display = window->display;
if (window->next) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment