GC Adapter: Do not attempt to claim_interface when libusb_open() returns an error.

Fixes a crash / nullptr dereference when the adapter is plugged in but
no drivers are installed for it, on Windows.
This commit is contained in:
Admiral H. Curtiss 2015-07-01 01:28:41 +02:00
parent 69b7296fc2
commit 08b952ef31
1 changed files with 1 additions and 0 deletions

View File

@ -235,6 +235,7 @@ static bool CheckDeviceAccess(libusb_device* device)
if (ret == LIBUSB_ERROR_NOT_SUPPORTED)
s_libusb_driver_not_supported = true;
}
return false;
}
else if ((ret = libusb_kernel_driver_active(s_handle, 0)) == 1)
{