Merge pull request #3536 from Hinsbart/close
close file descriptor if ioctls failed
This commit is contained in:
commit
519c866703
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue