Skip to content

Commit

Permalink
Fixed bug 2629 - Mac: crash when calling SDL_DestroyWindow with an ac…
Browse files Browse the repository at this point in the history
…tive OpenGL context

Alex Szpakowski

Since this commit https://hg.libsdl.org/SDL/rev/59b543340d63 , calling SDL_DestroyWindow will crash the program if the window has an active OpenGL context.

This is because the Cocoa_DestroyWindow code sets the window's driverdata to NULL and then calls [context setWindow:NULL], which tries to access the window's driverdata, resulting in a null pointer dereference.

I have attached a patch which fixes the issue by moving the line which sets the driverdata to NULL to after the lines which call functions that use the driverdata pointer.
  • Loading branch information
slouken committed Jul 7, 2014
1 parent 1c6cd67 commit d44f392
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/video/cocoa/SDL_cocoawindow.m
Expand Up @@ -1544,8 +1544,6 @@ - (void)resetCursorRects
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;

window->driverdata = NULL;

if (data) {
[data->listener close];
[data->listener release];
Expand All @@ -1562,6 +1560,8 @@ - (void)resetCursorRects

SDL_free(data);
}
window->driverdata = NULL;

[pool release];
}

Expand Down
3 changes: 1 addition & 2 deletions src/video/mir/SDL_mirwindow.c
Expand Up @@ -149,14 +149,13 @@ MIR_DestroyWindow(_THIS, SDL_Window* window)
MIR_Data* mir_data = _this->driverdata;
MIR_Window* mir_window = window->driverdata;

window->driverdata = NULL;

if (mir_data) {
SDL_EGL_DestroySurface(_this, mir_window->egl_surface);
MIR_mir_surface_release_sync(mir_window->surface);

SDL_free(mir_window);
}
window->driverdata = NULL;
}

SDL_bool
Expand Down
3 changes: 1 addition & 2 deletions src/video/uikit/SDL_uikitwindow.m
Expand Up @@ -290,13 +290,12 @@ static int SetupWindowData(_THIS, SDL_Window *window, UIWindow *uiwindow, SDL_bo
{
SDL_WindowData *data = (SDL_WindowData *)window->driverdata;

window->driverdata = NULL;

if (data) {
[data->viewcontroller release];
[data->uiwindow release];
SDL_free(data);
}
window->driverdata = NULL;
}

SDL_bool
Expand Down
3 changes: 1 addition & 2 deletions src/video/wayland/SDL_waylandwindow.c
Expand Up @@ -243,8 +243,6 @@ void Wayland_DestroyWindow(_THIS, SDL_Window *window)
SDL_VideoData *data = _this->driverdata;
SDL_WindowData *wind = window->driverdata;

window->driverdata = NULL;

if (data) {
SDL_EGL_DestroySurface(_this, wind->egl_surface);
WAYLAND_wl_egl_window_destroy(wind->egl_window);
Expand All @@ -261,6 +259,7 @@ void Wayland_DestroyWindow(_THIS, SDL_Window *window)
SDL_free(wind);
WAYLAND_wl_display_flush(data->display);
}
window->driverdata = NULL;
}

#endif /* SDL_VIDEO_DRIVER_WAYLAND && SDL_VIDEO_OPENGL_EGL */
Expand Down
3 changes: 1 addition & 2 deletions src/video/windows/SDL_windowswindow.c
Expand Up @@ -619,8 +619,6 @@ WIN_DestroyWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;

window->driverdata = NULL;

if (data) {
ReleaseDC(data->hwnd, data->hdc);
if (data->created) {
Expand All @@ -639,6 +637,7 @@ WIN_DestroyWindow(_THIS, SDL_Window * window)
}
SDL_free(data);
}
window->driverdata = NULL;
}

SDL_bool
Expand Down
3 changes: 1 addition & 2 deletions src/video/x11/SDL_x11window.c
Expand Up @@ -1394,8 +1394,6 @@ X11_DestroyWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;

window->driverdata = NULL;

if (data) {
SDL_VideoData *videodata = (SDL_VideoData *) data->videodata;
Display *display = videodata->display;
Expand Down Expand Up @@ -1424,6 +1422,7 @@ X11_DestroyWindow(_THIS, SDL_Window * window)
}
SDL_free(data);
}
window->driverdata = NULL;
}

SDL_bool
Expand Down

0 comments on commit d44f392

Please sign in to comment.