From c152349f69acfb6bb873ed1cd12ca1b6dc325f1f Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 16 Apr 2014 20:41:44 +0100 Subject: coverity#1202882 Dereference before null check Change-Id: Ie61df08c11b687c0b4a3ae212b3f9a6c95171396 --- sd/source/ui/remotecontrol/Communicator.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sd') diff --git a/sd/source/ui/remotecontrol/Communicator.cxx b/sd/source/ui/remotecontrol/Communicator.cxx index d3af69715190..bf399cae8ceb 100644 --- a/sd/source/ui/remotecontrol/Communicator.cxx +++ b/sd/source/ui/remotecontrol/Communicator.cxx @@ -122,10 +122,9 @@ void Communicator::execute() pTransmitter->join(); pTransmitter = NULL; - if( mpSocket ) - mpSocket->close(); + mpSocket->close(); delete mpSocket; - + mpSocket = NULL; RemoteServer::removeCommunicator( this ); } -- cgit