- Fix possible race condition in search engine

This commit is contained in:
Christophe Dumez
2010-02-10 21:21:43 +00:00
parent f54b65a56d
commit a9365bc126
2 changed files with 2 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
- BUGFIX: Link against boost and ssl to fix issues with gold linker
- BUGFIX: Fix memory leak in RSS
- BUGFIX: Improved HTTP gzip compression detection in downloader
- BUGFIX: Fix possible race condition in search engine
* Mon Feb 8 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.1.4
- BUGFIX: Fix file prioritizing in a torrent

View File

@@ -210,6 +210,7 @@ void SearchEngine::on_search_button_clicked(){
search_button->setText("Search");
return;
}
searchProcess->waitForFinished();
// Reload environment variables (proxy)
searchProcess->setEnvironment(QProcess::systemEnvironment());