1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 15:59:42 +01:00

Do please check your debug for null pointers :-)

This commit is contained in:
Jeff Mitchell 2011-08-29 13:13:10 -04:00
parent 0319e5f2f5
commit 47c515caa4

View File

@ -481,6 +481,12 @@ Servent::socketError( QAbstractSocket::SocketError e )
}
Connection* conn = sock->_conn;
if ( !conn )
{
tLog() << "SocketError, connection is null";
return;
}
tLog() << "Servent::SocketError:" << e << conn->id() << conn->name();
if( !sock->_disowned )
{