From: Richard Mudgett Date: Mon, 27 Apr 2009 21:22:17 +0000 (+0000) Subject: Fix a small memory leak on error in ast_channel_alloc(). X-Git-Tag: 11.0.0-beta1~4988 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb030f24ef86e04426ef8367a3c081d83549c320;p=thirdparty%2Fasterisk.git Fix a small memory leak on error in ast_channel_alloc(). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@190797 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/channel.c b/main/channel.c index d85f4d7de9..eabbfd0f43 100644 --- a/main/channel.c +++ b/main/channel.c @@ -855,6 +855,8 @@ alertpipe_failed: sched_context_destroy(tmp->sched); ast_string_field_free_memory(tmp); + ast_free(tmp->cid.cid_name); + ast_free(tmp->cid.cid_num); ast_free(tmp); return NULL; } else {