Add libusb error log
Log libusb_get_string_descriptor_ascii() errors. Refs #3050 <https://github.com/Genymobile/scrcpy/issues/3050>
This commit is contained in:
parent
adbe7908c6
commit
e4bb2b8728
1 changed files with 1 additions and 0 deletions
|
@ -15,6 +15,7 @@ read_string(libusb_device_handle *handle, uint8_t desc_index) {
|
|||
(unsigned char *) buffer,
|
||||
sizeof(buffer));
|
||||
if (result < 0) {
|
||||
LOGD("Read string: libusb error: %s", libusb_strerror(result));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue