瀏覽代碼

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

Philipp Wiesemann 9 年之前
父節點
當前提交
e79f00097a
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/joystick/emscripten/SDL_sysjoystick.c

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

@@ -378,7 +378,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 */