Fix a small memory leak on error in ast_channel_alloc().
authorRichard Mudgett <rmudgett@digium.com>
Mon, 27 Apr 2009 21:22:17 +0000 (21:22 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Mon, 27 Apr 2009 21:22:17 +0000 (21:22 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@190797 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/channel.c

index d85f4d7..eabbfd0 100644 (file)
@@ -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 {