From: Martin Willi Date: Thu, 10 Nov 2005 10:06:05 +0000 (-0000) Subject: - fixed memleak X-Git-Tag: 4.0.0~588 X-Git-Url: https://git.strongswan.org/?p=strongswan.git;a=commitdiff_plain;h=b92be4f06d5129f68964f4f41202369d99f34db9 - fixed memleak --- diff --git a/Source/charon/thread_pool.c b/Source/charon/thread_pool.c index 0231d1f..d4d1dff 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;