Forráskód Böngészése

Android: Fixed crash if closing removed joystick (thanks, Sylvain!).

Fixes fix for Bugzilla #3408.
Philipp Wiesemann 9 éve
szülő
commit
e41e185eab
1 módosított fájl, 3 hozzáadás és 1 törlés
  1. 3 1
      src/joystick/android/SDL_sysjoystick.c

+ 3 - 1
src/joystick/android/SDL_sysjoystick.c

@@ -539,7 +539,9 @@ void
 SDL_SYS_JoystickClose(SDL_Joystick * joystick)
 {
     SDL_joylist_item *item = (SDL_joylist_item *) joystick->hwdata;
-    item->joystick = NULL;
+    if (item) {
+        item->joystick = NULL;
+    }
 }
 
 /* Function to perform any system-specific joystick related cleanup */