mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-03-13 01:26:37 -04:00
Verify USB listener callback handle
Do not use `handle` if `libusb_hotplug_register_callback` fails
This commit is contained in:
parent
29feb5da79
commit
59bd71ddca
@ -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…
x
Reference in New Issue
Block a user