mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Introduce AsyncTask::runThenCallback
* Fixes #5295 * Introduce a callback approach to AsyncTask instead of entering multiple QEventLoop in the stack. This has additional benefits including not returning to the original stack location and potentially operating on deleted objects (use after free).
This commit is contained in:
parent
fd8d81f517
commit
443b9e4d37
2 changed files with 31 additions and 6 deletions
|
@ -118,13 +118,16 @@ void FileWatcher::checkFileChanged()
|
|||
// Prevent reentrance
|
||||
m_ignoreFileChange = true;
|
||||
|
||||
auto checksum = AsyncTask::runAndWaitForFuture([this]() -> QByteArray { return calculateChecksum(); });
|
||||
if (checksum != m_fileChecksum) {
|
||||
m_fileChecksum = checksum;
|
||||
m_fileChangeDelayTimer.start(0);
|
||||
}
|
||||
AsyncTask::runThenCallback([=] { return calculateChecksum(); },
|
||||
this,
|
||||
[=](QByteArray checksum) {
|
||||
if (checksum != m_fileChecksum) {
|
||||
m_fileChecksum = checksum;
|
||||
m_fileChangeDelayTimer.start(0);
|
||||
}
|
||||
|
||||
m_ignoreFileChange = false;
|
||||
m_ignoreFileChange = false;
|
||||
});
|
||||
}
|
||||
|
||||
QByteArray FileWatcher::calculateChecksum()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue