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
This commit is contained in:
Richard Mudgett 2009-04-27 21:22:17 +00:00
parent 89d06c7759
commit fb030f24ef
1 changed files with 2 additions and 0 deletions

View 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 {