sysjoystick: don't leak fd on error

This commit is contained in:
Wim Taymans
2025-02-12 10:14:16 +01:00
committed by Ryan C. Gordon
parent 9a802797d2
commit a44107540d

View File

@@ -1518,6 +1518,7 @@ static SDL_sensorlist_item *GetSensor(SDL_joylist_item *item)
return NULL;
}
if (ioctl(fd_item, EVIOCGUNIQ(sizeof(uniq_item) - 1), &uniq_item) < 0) {
close(fd_item);
return NULL;
}
close(fd_item);