From 36bc52b4410b3da374ae5f46125253abfe2c38d0 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 28 Jul 2015 14:53:14 +0200 Subject: sql: Fix memory leak in SQL logger --- src/libcharon/plugins/sql/sql_logger.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/libcharon/plugins/sql') diff --git a/src/libcharon/plugins/sql/sql_logger.c b/src/libcharon/plugins/sql/sql_logger.c index 9a7a6e0ff..0fa06eac5 100644 --- a/src/libcharon/plugins/sql/sql_logger.c +++ b/src/libcharon/plugins/sql/sql_logger.c @@ -120,6 +120,7 @@ METHOD(logger_t, get_level, level_t, METHOD(sql_logger_t, destroy, void, private_sql_logger_t *this) { + this->recursive->destroy(this->recursive); free(this); } -- cgit v1.2.3