mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Fixed memory leak.
This commit is contained in:
parent
66b27fc538
commit
7e7b7f6c33
|
@ -1287,11 +1287,14 @@ int msi_kill ( MSISession *session )
|
|||
/* Cancel all? */
|
||||
uint16_t _it = 0;
|
||||
/*for ( ; _it < session->calls[idx]->peer_count; _it++ )
|
||||
* FIXME: will not work on multiple peers, must cancel call for all peers
|
||||
*/
|
||||
* FIXME: will not work on multiple peers, must cancel call for all peers
|
||||
*/
|
||||
msi_cancel ( session, idx, session->calls[idx]->peers [_it], "MSI session terminated!" );
|
||||
}
|
||||
|
||||
free(((TimerHandler *)session->timer_handler)->timers);
|
||||
free(session->timer_handler);
|
||||
|
||||
free ( session->calls );
|
||||
pthread_mutex_unlock(session->mutex);
|
||||
pthread_mutex_destroy(session->mutex);
|
||||
|
|
Loading…
Reference in New Issue
Block a user