[svn-commits] qwell: branch 1.8 r306356 - in /branches/1.8: ./ apps/app_queue.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Feb 4 13:24:34 CST 2011


Author: qwell
Date: Fri Feb  4 13:24:29 2011
New Revision: 306356

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=306356
Log:
Merged revisions 306346 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r306346 | qwell | 2011-02-04 13:21:43 -0600 (Fri, 04 Feb 2011) | 9 lines
  
  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)
........

Modified:
    branches/1.8/   (props changed)
    branches/1.8/apps/app_queue.c

Propchange: branches/1.8/
------------------------------------------------------------------------------
Binary property 'branch-1.6.2-merged' - no diff available.

Modified: branches/1.8/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_queue.c?view=diff&rev=306356&r1=306355&r2=306356
==============================================================================
--- branches/1.8/apps/app_queue.c (original)
+++ branches/1.8/apps/app_queue.c Fri Feb  4 13:24:29 2011
@@ -1383,6 +1383,7 @@
 				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);




More information about the svn-commits mailing list