diff -r 962e6306d9d2 -r 7ef16719d8cb telephonyprotocols/rawipnif/src/RawIPFlow.cpp --- a/telephonyprotocols/rawipnif/src/RawIPFlow.cpp Fri Feb 19 23:59:33 2010 +0200 +++ b/telephonyprotocols/rawipnif/src/RawIPFlow.cpp Fri Mar 12 15:49:38 2010 +0200 @@ -529,11 +529,13 @@ { _LOG_L1C2(_L8("CRawIPFlow %08x:\tUnbind()"), this); - ASSERT(iBinder); - iBinder->Unbind(aUpperReceiver, aUpperControl); + if (iBinder) + { + iBinder->Unbind(aUpperReceiver, aUpperControl); - delete iBinder; - iBinder = NULL; + delete iBinder; + iBinder = NULL; + } SendDataClientIdleIfNoClients(); }