Просмотр исходного кода

Fixed upstream bug: FD 0 is a valid file descriptor

https://github.com/libusb/hidapi/issues/199
Sam Lantinga 5 лет назад
Родитель
Сommit
65c9f1d2cc
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/hidapi/linux/hid.c

+ 1 - 1
src/hidapi/linux/hid.c

@@ -719,7 +719,7 @@ hid_device * HID_API_EXPORT hid_open_path(const char *path, int bExclusive)
 	dev->device_handle = open(path, O_RDWR);
 	dev->device_handle = open(path, O_RDWR);
 
 
 	/* If we have a good handle, return it. */
 	/* If we have a good handle, return it. */
-	if (dev->device_handle > 0) {
+	if (dev->device_handle >= 0) {
 
 
 		/* Get the report descriptor */
 		/* Get the report descriptor */
 		int res, desc_size = 0;
 		int res, desc_size = 0;