Quellcode durchsuchen

SDL_udev: check for NULL return value from udev_device_get_action

Signed-off-by: Steven Noonan <steven@valvesoftware.com>
Signed-off-by: Sam Lantinga <slouken@libsdl.org>
Steven Noonan vor 4 Jahren
Ursprung
Commit
b15bbd4e3f
1 geänderte Dateien mit 9 neuen und 7 gelöschten Zeilen
  1. 9 7
      src/core/linux/SDL_udev.c

+ 9 - 7
src/core/linux/SDL_udev.c

@@ -449,13 +449,15 @@ SDL_UDEV_Poll(void)
         }
         action = _this->syms.udev_device_get_action(dev);
 
-        if (SDL_strcmp(action, "add") == 0) {
-            /* Wait for the device to finish initialization */
-            SDL_Delay(100);
-
-            device_event(SDL_UDEV_DEVICEADDED, dev);
-        } else if (SDL_strcmp(action, "remove") == 0) {
-            device_event(SDL_UDEV_DEVICEREMOVED, dev);
+        if (action) {
+            if (SDL_strcmp(action, "add") == 0) {
+                /* Wait for the device to finish initialization */
+                SDL_Delay(100);
+
+                device_event(SDL_UDEV_DEVICEADDED, dev);
+            } else if (SDL_strcmp(action, "remove") == 0) {
+                device_event(SDL_UDEV_DEVICEREMOVED, dev);
+            }
         }
         
         _this->syms.udev_device_unref(dev);