mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 06:01:33 -06:00
Fix crash when aborting a torrent creation process. Closes #7783.
The wait time wasn't long enough causing the thread to terminate prematurely. Also, to avoid crashing qbt entirely when creating a torrent for a very big file, I decided to wait indefinitely here.
This commit is contained in:
committed by
sledgehammer999
parent
120ee6b836
commit
34d38ef466
@@ -67,7 +67,7 @@ TorrentCreatorThread::TorrentCreatorThread(QObject *parent)
|
||||
TorrentCreatorThread::~TorrentCreatorThread()
|
||||
{
|
||||
requestInterruption();
|
||||
wait(1000);
|
||||
wait();
|
||||
}
|
||||
|
||||
void TorrentCreatorThread::create(const QString &inputPath, const QString &savePath, const QStringList &trackers,
|
||||
|
||||
Reference in New Issue
Block a user