1
0
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:
Jeff Mitchell 2011-06-15 09:08:13 -04:00
parent fb7f98c1fc
commit e6bb53c9f5

View File

@ -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;
}
}