1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

* Fixed assert bug in pipeline.

This commit is contained in:
Christian Muehlhaeuser
2011-07-20 03:59:02 +02:00
parent b39029743e
commit 9b8d69a21f

View File

@@ -191,8 +191,6 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
q->onResolvingFinished(); q->onResolvingFinished();
setQIDState( q, 0 ); setQIDState( q, 0 );
if ( !m_queries_temporary.contains( q ) )
m_qids.remove( q->id() );
if ( m_qidsTimeout.contains( q->id() ) ) if ( m_qidsTimeout.contains( q->id() ) )
m_qidsTimeout.remove( q->id() ); m_qidsTimeout.remove( q->id() );
@@ -273,6 +271,8 @@ Pipeline::timeoutShunt( const query_ptr& q )
{ {
qDebug() << "Reached end of pipeline for:" << q->toString(); qDebug() << "Reached end of pipeline for:" << q->toString();
setQIDState( q, 0 ); setQIDState( q, 0 );
if ( !m_queries_temporary.contains( q ) )
m_qids.remove( q->id() );
} }
} }
@@ -302,6 +302,8 @@ Pipeline::shunt( const query_ptr& q )
{ {
qDebug() << "Reached end of pipeline for:" << q->toString(); qDebug() << "Reached end of pipeline for:" << q->toString();
setQIDState( q, 0 ); setQIDState( q, 0 );
if ( !m_queries_temporary.contains( q ) )
m_qids.remove( q->id() );
q->onResolvingFinished(); q->onResolvingFinished();
} }