mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Verify USB listener callback handle
Do not use `handle` if `libusb_hotplug_register_callback` fails
This commit is contained in:
committed by
Jonathan White
parent
fbdd97b1be
commit
34808a2caa
@@ -97,11 +97,13 @@ DeviceListenerLibUsb::registerHotplugCallback(bool arrived, bool left, int vendo
|
|||||||
// Avoid race conditions
|
// Avoid race conditions
|
||||||
m_usbEvents.waitForFinished();
|
m_usbEvents.waitForFinished();
|
||||||
}
|
}
|
||||||
if (!m_usbEvents.isRunning()) {
|
if (handle > 0) {
|
||||||
m_completed = false;
|
m_callbackHandles.insert(handle);
|
||||||
m_usbEvents = QtConcurrent::run(handleUsbEvents, static_cast<libusb_context*>(m_ctx), &m_completed);
|
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;
|
return handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user