Trying to fix TimerHandler *handler memory leak

This commit is contained in:
xor2003 2014-10-17 11:26:22 +04:00
parent 35b16b9cee
commit 1b60fbed56

View File

@ -699,6 +699,8 @@ static void timer_terminate_session(TimerHandler *handler)
free(handler->timers);
pthread_mutex_destroy( &handler->mutex );
free(handler);
}
/**