]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 299624 via svnmerge from
authorTilghman Lesher <tilghman@meg.abyt.es>
Sat, 25 Dec 2010 10:05:00 +0000 (10:05 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Sat, 25 Dec 2010 10:05:00 +0000 (10:05 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r299624 | tilghman | 2010-12-25 04:04:06 -0600 (Sat, 25 Dec 2010) | 5 lines

  Move check for extension existence below variable inheritance, due to the possible use of an eswitch.

  (closes issue #16228)
   Reported by: jlaguilar
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@299625 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_local.c

index 778654a1a307dabf0dec3e9a8d2620d9673cf66c..9181af08d10632d9a0b7e1d2f68b922b35d8c037 100644 (file)
@@ -688,12 +688,6 @@ static int local_call(struct ast_channel *ast, char *dest, int timeout)
        ast_cdr_update(p->chan);
        p->chan->cdrflags = p->owner->cdrflags;
 
-       if (!ast_exists_extension(NULL, p->chan->context, p->chan->exten, 1, p->owner->cid.cid_num)) {
-               ast_log(LOG_NOTICE, "No such extension/context %s@%s while calling Local channel\n", p->chan->exten, p->chan->context);
-               ao2_unlock(p);
-               return -1;
-       }
-
        /* Make sure we inherit the ANSWERED_ELSEWHERE flag if it's set on the queue/dial call request in the dialplan */
        if (ast_test_flag(ast, AST_FLAG_ANSWERED_ELSEWHERE)) {
                ast_set_flag(p->chan, AST_FLAG_ANSWERED_ELSEWHERE);
@@ -712,6 +706,12 @@ static int local_call(struct ast_channel *ast, char *dest, int timeout)
        }
        ast_channel_datastore_inherit(p->owner, p->chan);
 
+       if (!ast_exists_extension(p->chan, p->chan->context, p->chan->exten, 1, p->owner->cid.cid_num)) {
+               ast_log(LOG_NOTICE, "No such extension/context %s@%s while calling Local channel\n", p->chan->exten, p->chan->context);
+               ao2_unlock(p);
+               return -1;
+       }
+
        /* Start switch on sub channel */
        if (!(res = ast_pbx_start(p->chan)))
                ast_set_flag(p, LOCAL_LAUNCHED_PBX);