From cab4557006f857f0037d896fc9f7569d6884eaaa Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Fri, 27 Aug 2004 03:16:16 +0000 Subject: When detecting a hairpin, redirect to the appropriate local extension (bug #1974) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3662 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_dial.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'apps/app_dial.c') diff --git a/apps/app_dial.c b/apps/app_dial.c index b32ab2067..0bc754c3f 100755 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -250,10 +250,11 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu if (!o->chan->callerid) ast_log(LOG_WARNING, "Out of memory\n"); } else { - if (in->callerid) + if (in->callerid) { o->chan->callerid = strdup(in->callerid); - if (!o->chan->callerid) - ast_log(LOG_WARNING, "Out of memory\n"); + if (!o->chan->callerid) + ast_log(LOG_WARNING, "Out of memory\n"); + } strncpy(o->chan->accountcode, in->accountcode, sizeof(o->chan->accountcode) - 1); o->chan->cdrflags = in->cdrflags; } -- cgit v1.2.3