aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2011-02-04 19:21:43 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2011-02-04 19:21:43 +0000
commitcb9609f3ce27e6535d8c24bce8fefa9320be2c0c (patch)
tree57cf5d6e3789bf93f303a71495c8bc532584e5af /apps
parent33528cce2f7a08139e943b4b04df7aae76957c6f (diff)
Don't fallthrough to 'unknown' in the 'ringing' case.
This could cause improper exits from the queue. (closes issue #18499) Reported by: zaltar Patches: app_queue.patch uploaded by zaltar (license 1148) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@306346 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 813e8f9e0..6e940f789 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -987,6 +987,7 @@ static int get_member_status(struct call_queue *q, int max_penalty, int min_pena
ast_debug(4, "%s is unavailable because his device state is 'ringing'\n", member->membername);
break;
}
+ goto default_case;
case AST_DEVICE_UNKNOWN:
if (conditions & QUEUE_EMPTY_UNKNOWN) {
ast_debug(4, "%s is unavailable because his device state is 'unknown'\n", member->membername);