Explorar o código

Another fix to prevent dereferencing a null window pointer in SDL_mouse.c

Gabriel Jacobo %!s(int64=11) %!d(string=hai) anos
pai
achega
9dc2614e7d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/events/SDL_mouse.c

+ 1 - 1
src/events/SDL_mouse.c

@@ -248,7 +248,7 @@ SDL_PrivateSendMouseMotion(SDL_Window * window, SDL_MouseID mouseID, int relativ
 
 
     /* make sure that the pointers find themselves inside the windows,
     /* make sure that the pointers find themselves inside the windows,
        unless we have the mouse captured. */
        unless we have the mouse captured. */
-    if ((window->flags & SDL_WINDOW_MOUSE_CAPTURE) == 0) {
+    if (window != NULL && ((window->flags & SDL_WINDOW_MOUSE_CAPTURE) == 0)) {
         int x_max = 0, y_max = 0;
         int x_max = 0, y_max = 0;
 
 
         // !!! FIXME: shouldn't this be (window) instead of (mouse->focus)?
         // !!! FIXME: shouldn't this be (window) instead of (mouse->focus)?