mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-04-05 08:32:42 +02:00
Delete lister after it's done, before returning
This commit is contained in:
parent
fb7f98c1fc
commit
e6bb53c9f5
@ -283,6 +283,16 @@ MusicScanner::listerFinished( const QMap<QString, unsigned int>& newmtimes )
|
||||
connect( cmd, SIGNAL( finished() ), SIGNAL( finished() ) );
|
||||
|
||||
Database::instance()->enqueue( QSharedPointer<DatabaseCommand>(cmd) );
|
||||
|
||||
if ( !m_dirLister.isNull() )
|
||||
{
|
||||
m_dirListerThreadController->quit();;
|
||||
m_dirListerThreadController->wait( 60000 );
|
||||
|
||||
delete m_dirLister.data();
|
||||
delete m_dirListerThreadController;
|
||||
m_dirListerThreadController = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user