mirror of
https://github.com/yawut/SDL.git
synced 2026-09-07 16:45:57 -05:00
Fix a corruption when you remove first joystick on Linux.
Fixes a bug where the joystick subsystem would get corrupted if you unplug the first of multiple joysticks. Fixes bug 1714. CR: saml
This commit is contained in:
0
Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj
Normal file → Executable file
0
Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj
Normal file → Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -339,13 +339,12 @@ MaybeRemoveDevice(const char *path)
|
||||
}
|
||||
if (prev != NULL) {
|
||||
prev->next = item->next;
|
||||
if (item == SDL_joylist_tail) {
|
||||
SDL_joylist_tail = prev;
|
||||
}
|
||||
} else {
|
||||
SDL_assert(!SDL_joylist);
|
||||
SDL_assert(!SDL_joylist_tail);
|
||||
SDL_joylist = SDL_joylist_tail = NULL;
|
||||
SDL_assert(SDL_joylist == item);
|
||||
SDL_joylist = item->next;
|
||||
}
|
||||
if (item == SDL_joylist_tail) {
|
||||
SDL_joylist_tail = prev;
|
||||
}
|
||||
SDL_free(item->path);
|
||||
SDL_free(item->name);
|
||||
|
||||
Reference in New Issue
Block a user