mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
fix(usb_host): Fixed unchecked return value in enum driver (coverity)
This commit is contained in:
parent
9d28b2c297
commit
44f09c470b
@ -198,8 +198,8 @@ static uint8_t get_next_free_dev_addr(void)
|
||||
if (usbh_devs_open(new_dev_addr, &dev_hdl) == ESP_ERR_NOT_FOUND) {
|
||||
break;
|
||||
}
|
||||
// We have a device with the same address on a bus, close device and request new addr
|
||||
usbh_dev_close(dev_hdl);
|
||||
// We have a device with the same address on a bus, close device and request new addr, there should be no error with closing
|
||||
ESP_ERROR_CHECK(usbh_dev_close(dev_hdl));
|
||||
new_dev_addr = get_next_dev_addr();
|
||||
}
|
||||
// Sanity check
|
||||
|
Loading…
x
Reference in New Issue
Block a user