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:
Chocobo1
2017-11-21 18:29:22 +08:00
committed by sledgehammer999
parent 120ee6b836
commit 34d38ef466

View File

@@ -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,