mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
(closes issue #10437)
Reported by: haklin Don't set the callerid name and number a second time on a newly created channel. ast_channel_alloc itself already sets it and setting it twice would cause a memory leak. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@79174 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -867,9 +867,7 @@ static struct ast_channel *phone_new(struct phone_pvt *i, int state, char *conte
|
||||
|
||||
/* Don't use ast_set_callerid() here because it will
|
||||
* generate a NewCallerID event before the NewChannel event */
|
||||
tmp->cid.cid_num = ast_strdup(i->cid_num);
|
||||
tmp->cid.cid_ani = ast_strdup(i->cid_num);
|
||||
tmp->cid.cid_name = ast_strdup(i->cid_name);
|
||||
|
||||
i->owner = tmp;
|
||||
ast_module_ref(ast_module_info->self);
|
||||
|
Reference in New Issue
Block a user