Browse Source

Added handling of NULL as input for SDL_GameControllerAddMapping().

Philipp Wiesemann 10 years ago
parent
commit
7268eabb9b
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/joystick/SDL_gamecontroller.c

+ 4 - 0
src/joystick/SDL_gamecontroller.c

@@ -669,6 +669,10 @@ SDL_GameControllerAddMapping(const char *mappingString)
     ControllerMapping_t *pControllerMapping;
     SDL_bool is_xinput_mapping = SDL_FALSE;
 
+    if (!mappingString) {
+        return SDL_InvalidParamError("mappingString");
+    }
+
     pchGUID = SDL_PrivateGetControllerGUIDFromMappingString(mappingString);
     if (!pchGUID) {
         return SDL_SetError("Couldn't parse GUID from %s", mappingString);