close file descriptor if ioctls failed

This commit is contained in:
hondres 2016-02-01 13:39:50 +01:00
parent 0364d6b076
commit 2809b31f8c
1 changed files with 1 additions and 0 deletions

View File

@ -304,6 +304,7 @@ void joystick_linux::open_joystick(const char *p_path) {
if ((ioctl(fd, EVIOCGBIT(0, sizeof(evbit)), evbit) < 0) ||
(ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(keybit)), keybit) < 0) ||
(ioctl(fd, EVIOCGBIT(EV_ABS, sizeof(absbit)), absbit) < 0)) {
close(fd);
return;
}