Fix double free corruption due to duplicated call to IceCloseConnection

This resolves Bug 2167
pull/2/head
Timothy Pearson 9 years ago
parent ad2dc879b6
commit 9005480696

@ -771,8 +771,8 @@ void KSMServer::processData( int /*socket*/ )
SmsConn smsConn = it.current()->connection();
deleteClient( it.current() );
SmsCleanUp( smsConn );
(void) IceCloseConnection( iceConn );
}
(void) IceCloseConnection( iceConn );
}
}

Loading…
Cancel
Save