From b92be4f06d5129f68964f4f41202369d99f34db9 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Thu, 10 Nov 2005 10:06:05 +0000 Subject: [PATCH] - fixed memleak --- Source/charon/thread_pool.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/charon/thread_pool.c b/Source/charon/thread_pool.c index 0231d1f7c..d4d1dff44 100644 --- a/Source/charon/thread_pool.c +++ b/Source/charon/thread_pool.c @@ -99,6 +99,7 @@ static status_t destroy(private_thread_pool_t *this) } /* free mem */ + this->logger->destroy(this->logger); allocator_free(this->threads); allocator_free(this); return SUCCESS;