mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 12:37:39 +03:00
Verify USB listener callback handle
Do not use `handle` if `libusb_hotplug_register_callback` fails
This commit is contained in:
parent
fbdd97b1be
commit
34808a2caa
1 changed files with 6 additions and 4 deletions
|
@ -97,11 +97,13 @@ DeviceListenerLibUsb::registerHotplugCallback(bool arrived, bool left, int vendo
|
|||
// Avoid race conditions
|
||||
m_usbEvents.waitForFinished();
|
||||
}
|
||||
if (!m_usbEvents.isRunning()) {
|
||||
m_completed = false;
|
||||
m_usbEvents = QtConcurrent::run(handleUsbEvents, static_cast<libusb_context*>(m_ctx), &m_completed);
|
||||
if (handle > 0) {
|
||||
m_callbackHandles.insert(handle);
|
||||
if (!m_usbEvents.isRunning()) {
|
||||
m_completed = false;
|
||||
m_usbEvents = QtConcurrent::run(handleUsbEvents, static_cast<libusb_context*>(m_ctx), &m_completed);
|
||||
}
|
||||
}
|
||||
m_callbackHandles.insert(handle);
|
||||
return handle;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue