Commit bac8df4abdccd82f4409bae1fe2ae4d3a6f74055

Sam Lantinga 2022-08-28T17:55:49

Fixed memory leak when out of memory

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/joystick/linux/SDL_sysjoystick.c b/src/joystick/linux/SDL_sysjoystick.c
index b95d6f0..e96e5b0 100644
--- a/src/joystick/linux/SDL_sysjoystick.c
+++ b/src/joystick/linux/SDL_sysjoystick.c
@@ -331,6 +331,7 @@ MaybeAddDevice(const char *path)
 
     item = (SDL_joylist_item *) SDL_calloc(1, sizeof (SDL_joylist_item));
     if (item == NULL) {
+        SDL_free(name);
         return -1;
     }