From: Richard Mudgett Date: Tue, 15 Feb 2011 19:52:45 +0000 (+0000) Subject: Don't crash when forcing caller id. X-Git-Tag: 1.8.4-rc1~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=227c62086679fd50383bcb808f2e0e2b8bcb2bfa;p=thirdparty%2Fasterisk.git Don't crash when forcing caller id. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@307962 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_dial.c b/apps/app_dial.c index e24a72e042..4dd29e0e76 100644 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -2095,7 +2095,7 @@ static int dial_exec_full(struct ast_channel *chan, const char *data, struct ast struct ast_party_connected_line connected; int pres; - ast_party_connected_line_set_init(&connected, &tmp->chan->connected); + ast_party_connected_line_set_init(&connected, &tc->connected); if (cid_pres) { pres = ast_parse_caller_presentation(cid_pres); if (pres < 0) { @@ -2115,7 +2115,7 @@ static int dial_exec_full(struct ast_channel *chan, const char *data, struct ast connected.id.name.presentation = pres; } connected.id.tag = cid_tag; - ast_channel_set_connected_line(tmp->chan, &connected, NULL); + ast_channel_set_connected_line(tc, &connected, NULL); } else { ast_connected_line_copy_from_caller(&tc->connected, &chan->caller); }