From b39763c6d5488d8bec707b904b76ca10285a0df5 Mon Sep 17 00:00:00 2001 From: Badalyan Vyacheslav Date: Sun, 9 Oct 2016 22:53:07 -0400 Subject: [PATCH] cel_odbc: Fix memory leak on module unload Change-Id: Ic7a1236eba2408090fdabb5f717b5fa455ead715 --- cel/cel_odbc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cel/cel_odbc.c b/cel/cel_odbc.c index f416401cb4..965fc9eae0 100644 --- a/cel/cel_odbc.c +++ b/cel/cel_odbc.c @@ -290,6 +290,7 @@ static int load_config(void) else ast_free(tableptr); } + ast_config_destroy(cfg); return res; } -- 2.47.2