1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 14:57:52 +00:00

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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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