1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-07 01:22:49 +02:00

Fix: Called C++ object pointer is null

This branch is very unlikely to happen but ensuring non-null
ControlConnection will save us maybe from a very unlikely crash.
This commit is contained in:
Uwe L. Korn 2014-07-06 17:57:14 +01:00
parent 3e71fc7d37
commit 1487d5d7f3

@ -813,7 +813,9 @@ Servent::createParallelConnection( Connection* orig_conn, Connection* new_conn,
m.insert( "offer", key );
m.insert( "controlid", Database::instance()->impl()->dbid() );
orig_conn->sendMsg( Msg::factory( TomahawkUtils::toJson( m ), Msg::JSON ) );
if (orig_conn) {
orig_conn->sendMsg( Msg::factory( TomahawkUtils::toJson( m ), Msg::JSON ) );
}
}
}