Skip to content

Commit

Permalink
drivers USB: check usb_open() result
Browse files Browse the repository at this point in the history
Fixes issue 245
  • Loading branch information
doegox committed Apr 5, 2013
1 parent 9cb9e0e commit b950eac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion libnfc/drivers/acr122_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,8 @@ acr122_usb_scan(const nfc_context *context, nfc_connstring connstrings[], const
}

usb_dev_handle *udev = usb_open(dev);
if (udev == NULL)
continue;

// Set configuration
// acr122_usb_get_usb_device_name (dev, udev, pnddDevices[device_found].acDevice, sizeof (pnddDevices[device_found].acDevice));
Expand Down Expand Up @@ -413,7 +415,8 @@ acr122_usb_open(const nfc_context *context, const nfc_connstring connstring)
continue;
}
// Open the USB device
data.pudh = usb_open(dev);
if ((data.pudh = usb_open(dev)) == NULL)
continue;
// Reset device
usb_reset(data.pudh);
// Retrieve end points
Expand Down
5 changes: 4 additions & 1 deletion libnfc/drivers/pn53x_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ pn53x_usb_scan(const nfc_context *context, nfc_connstring connstrings[], const s
}

usb_dev_handle *udev = usb_open(dev);
if (udev == NULL)
continue;

// Set configuration
int res = usb_set_configuration(udev, 1);
Expand Down Expand Up @@ -298,7 +300,8 @@ pn53x_usb_open(const nfc_context *context, const nfc_connstring connstring)
continue;
}
// Open the USB device
data.pudh = usb_open(dev);
if ((data.pudh = usb_open(dev)) == NULL)
continue;
// Retrieve end points
pn53x_usb_get_end_points(dev, &data);
// Set configuration
Expand Down

0 comments on commit b950eac

Please sign in to comment.