From fe6767f2e1fbb124f80b08686b127d027771b879 Mon Sep 17 00:00:00 2001 From: Jeff Peeler Date: Thu, 13 Nov 2008 19:18:34 +0000 Subject: [PATCH] Merged revisions 156649 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r156649 | jpeeler | 2008-11-13 13:17:50 -0600 (Thu, 13 Nov 2008) | 6 lines (closes issue #13891) Reported by: smurfix This reverts a change I made in 116297. At the time it seemed the change was required to solve an issue with attempting a transfer but then letting it timeout without dialing any digits. However, I didn't realize that having an empty extension was possible. I'm removing the immediate return that was added in pbx_find_extension if the extension is null. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@156650 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/pbx.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/main/pbx.c b/main/pbx.c index c77f650615..a1ba568f81 100644 --- a/main/pbx.c +++ b/main/pbx.c @@ -2056,9 +2056,6 @@ struct ast_exten *pbx_find_extension(struct ast_channel *chan, ast_log(LOG_NOTICE,"Looking for cont/ext/prio/label/action = %s/%s/%d/%s/%d\n", context, exten, priority, label, (int)action); #endif - if (ast_strlen_zero(exten)) - return NULL; - /* Initialize status if appropriate */ if (q->stacklen == 0) { q->status = STATUS_NO_CONTEXT;