From fb79f2259a6bebb680986b33e18d159bff8c6e7b Mon Sep 17 00:00:00 2001 From: file Date: Tue, 11 Dec 2007 19:52:37 +0000 Subject: Merged revisions 92363 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r92363 | file | 2007-12-11 15:51:40 -0400 (Tue, 11 Dec 2007) | 6 lines Fix potential memory leak with the dialed interfaces list if another memory allocation fails. (closes issue #11507) Reported by: eliel Patches: global_datastores.c.patch uploaded by eliel (license 64) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@92364 f38db490-d61c-443f-a65b-d21fe96a405b --- main/global_datastores.c | 1 + 1 file changed, 1 insertion(+) (limited to 'main/global_datastores.c') diff --git a/main/global_datastores.c b/main/global_datastores.c index f43f4e2a4..9b87b2cb4 100644 --- a/main/global_datastores.c +++ b/main/global_datastores.c @@ -65,6 +65,7 @@ static void *dialed_interface_duplicate(void *data) struct ast_dialed_interface *di2 = ast_calloc(1, sizeof(*di2) + strlen(di->interface)); if(!di2) { AST_LIST_UNLOCK(old_list); + dialed_interface_destroy(new_list); return NULL; } strcpy(di2->interface, di->interface); -- cgit v1.2.3