Windows: Fixed bug in interface autoclaim
authorBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>
Fri, 1 Feb 2013 14:42:06 +0000 (01:42 +1100)
committerPete Batard <pete@akeo.ie>
Sat, 2 Feb 2013 00:09:50 +0000 (00:09 +0000)
* Bug was introduced in f2b19e4a32c1445f4fea06beca61e8c7e7757950
* Closes #78
* Closes #80

AUTHORS
libusb/os/windows_usb.c
libusb/version_nano.h

diff --git a/AUTHORS b/AUTHORS
index 88c7ab5..8fd762e 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -17,6 +17,7 @@ Anthony Clay
 Artem Egorkine
 Aurelien Jarno
 Bastien Nocera
+Benjamin Dobell
 Dave Camarillo
 David Engraf
 David Moore
index 7b459a1..ee7a9f1 100644 (file)
@@ -2732,11 +2732,11 @@ static int winusbx_claim_interface(int sub_api, struct libusb_device_handle *dev
                // must first claim the first interface before you claim the others
                if ((winusb_handle == 0) || (winusb_handle == INVALID_HANDLE_VALUE)) {
                        file_handle = handle_priv->interface_handle[0].dev_handle;
-                       if (!WinUSBX[sub_api].Initialize(file_handle, &winusb_handle)) {
+                       if (WinUSBX[sub_api].Initialize(file_handle, &winusb_handle)) {
                                handle_priv->interface_handle[0].api_handle = winusb_handle;
                                usbi_warn(ctx, "auto-claimed interface 0 (required to claim %d with WinUSB)", iface);
                        } else {
-                               usbi_warn(ctx, "failed to auto-claim interface 0 (required to claim %d with WinUSB)", iface);
+                               usbi_warn(ctx, "failed to auto-claim interface 0 (required to claim %d with WinUSB): %s", iface, windows_error_str(0));
                                return LIBUSB_ERROR_ACCESS;
                        }
                }
index 64f61c5..bc838f0 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 10600
+#define LIBUSB_NANO 10601