From e6d612145f092eba465b275c315c4b555430c5e3 Mon Sep 17 00:00:00 2001 From: rmudgett Date: Tue, 3 Nov 2009 18:15:57 +0000 Subject: Merged revisions 227275 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r227275 | rmudgett | 2009-11-03 11:55:47 -0600 (Tue, 03 Nov 2009) | 4 lines Make sure the outgoing flag is cleared if a new channel fails to get created for outgoing calls. This is the relevant portion of asterisk/trunk -r226648 ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@227280 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_dahdi.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'channels/chan_dahdi.c') diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index 1be4429a6..fc63cde2a 100644 --- a/channels/chan_dahdi.c +++ b/channels/chan_dahdi.c @@ -10986,6 +10986,9 @@ static struct ast_channel *dahdi_request(const char *type, int format, void *dat } p->outgoing = 1; tmp = dahdi_new(p, AST_STATE_RESERVED, 0, p->owner ? SUB_CALLWAIT : SUB_REAL, 0, 0); + if (!tmp) { + p->outgoing = 0; + } #ifdef HAVE_PRI if (p->bearer) { /* Log owner to bearer channel, too */ -- cgit v1.2.3