diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-10-16 08:06:09 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-10-16 08:06:09 +0000 |
| commit | 0b4c28342e621ab7c45b1a21ebe8d958a76dc634 (patch) | |
| tree | 09257c1905a18eb77d3f2e8fc6c300624f078b6a /src/plugins/General/rgscan/rgscandialog.cpp | |
| parent | eb74cc322125087c3cee58282be0ac38dd7ec052 (diff) | |
| download | qmmp-0b4c28342e621ab7c45b1a21ebe8d958a76dc634.tar.gz qmmp-0b4c28342e621ab7c45b1a21ebe8d958a76dc634.tar.bz2 qmmp-0b4c28342e621ab7c45b1a21ebe8d958a76dc634.zip | |
rgscan: fixed race condition
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3795 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/rgscan/rgscandialog.cpp')
| -rw-r--r-- | src/plugins/General/rgscan/rgscandialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/General/rgscan/rgscandialog.cpp b/src/plugins/General/rgscan/rgscandialog.cpp index f7f867433..c935ad0b4 100644 --- a/src/plugins/General/rgscan/rgscandialog.cpp +++ b/src/plugins/General/rgscan/rgscandialog.cpp @@ -136,7 +136,7 @@ void RGScanDialog::onScanFinished(QString url) foreach (RGScanner *scanner, m_scanners) { - if(scanner->isRunning()) + if(scanner->isRunning() || scanner->isPending()) stopped = false; } |
