Fix double free corruption due to duplicated call to IceCloseConnection

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

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

Loading…
Cancel
Save