Linux: Fixed not needed call to close() on error.

It was called if file descriptor was none and -1.
This commit is contained in:
Philipp Wiesemann 2015-06-08 20:46:09 +02:00
parent f1924a616d
commit 86e9ab79ce

View File

@ -390,8 +390,8 @@ SDL_SYS_HapticName(int index)
/* No name found, return device character device */
name = item->fname;
}
close(fd);
}
close(fd);
return name;
}