From 37b73283ff4308e7840e65bd8b6aa7b9b3a15542 Mon Sep 17 00:00:00 2001 From: Sean Bright <sean@malleable.com> Date: Thu, 14 Jan 2010 23:13:02 +0000 Subject: [PATCH] Plug a memory leak in res_config_ldap. (closes issue #16257) Reported by: nito Patches: issue16257_20100111.diff uploaded by seanbright (license 71) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@240271 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_config_ldap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/res/res_config_ldap.c b/res/res_config_ldap.c index 3e0b8e106d..8496d801a3 100644 --- a/res/res_config_ldap.c +++ b/res/res_config_ldap.c @@ -378,8 +378,10 @@ static struct ast_variable **realtime_ldap_result_to_vars(struct ldap_table_conf ldap_entry = ldap_first_entry(ldapConn, ldap_result_msg); for (tot_count = 0; ldap_entry; tot_count++) { - tot_count += semicolon_count_var(realtime_ldap_entry_to_var(table_config, ldap_entry)); + struct ast_variable *tmp = realtime_ldap_entry_to_var(table_config, ldap_entry); + tot_count += semicolon_count_var(tmp); ldap_entry = ldap_next_entry(ldapConn, ldap_entry); + ast_variables_destroy(tmp); } if (entries_count_ptr) { -- GitLab