dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 89088 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r89088 | murf | 2007-11-07 14:40:28 -0700 (Wed, 07 Nov 2007) | 1 line

In response to 10578, I just ran 1.4 thru valgrind; some of the config leakage I've already fixed, but it doesn't hurt to double check. I found and fixed leaks in res_jabber, cdr_tds, pbx_ael. Nothing major, tho.
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89089 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
murf 2007-11-07 22:09:10 +00:00
parent 227698cc98
commit 6d6b520aba
2 changed files with 5 additions and 2 deletions

View File

@ -441,9 +441,11 @@ static int tds_load_module(int reload)
return 0;
var = ast_variable_browse(cfg, "global");
if (!var) /* nothing configured */
if (!var) /* nothing configured */ {
ast_config_destroy(cfg);
return 0;
}
ptr = ast_variable_retrieve(cfg, "global", "hostname");
if (ptr) {
if (hostname)

View File

@ -2867,6 +2867,7 @@ static int aji_load_config(int reload)
}
cat = ast_category_browse(cfg, cat);
}
ast_config_destroy(cfg); /* or leak memory */
return 1;
}