Avoid race condition when waking worker thread

PR #19005.
This commit is contained in:
Vladimir Golovnev
2023-05-23 02:22:16 +03:00
committed by GitHub
parent b406d669b3
commit a59301712e

View File

@@ -703,8 +703,8 @@ void BitTorrent::DBResumeDataStorage::Worker::run()
void DBResumeDataStorage::Worker::requestInterruption() void DBResumeDataStorage::Worker::requestInterruption()
{ {
m_waitCondition.wakeAll();
QThread::requestInterruption(); QThread::requestInterruption();
m_waitCondition.wakeAll();
} }
void BitTorrent::DBResumeDataStorage::Worker::store(const TorrentID &id, const LoadTorrentParams &resumeData) void BitTorrent::DBResumeDataStorage::Worker::store(const TorrentID &id, const LoadTorrentParams &resumeData)