[asterisk-commits] tilghman: branch 1.6.2 r273716 - in /branches/1.6.2: ./ apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jul 2 11:59:15 CDT 2010
Author: tilghman
Date: Fri Jul 2 11:59:11 2010
New Revision: 273716
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=273716
Log:
Merged revisions 273714 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r273714 | tilghman | 2010-07-02 11:57:28 -0500 (Fri, 02 Jul 2010) | 2 lines
The switch fallthrough could create some errorneous situations, so best to force directly to the default case.
........
Modified:
branches/1.6.2/ (props changed)
branches/1.6.2/apps/app_queue.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/apps/app_queue.c?view=diff&rev=273716&r1=273715&r2=273716
==============================================================================
--- branches/1.6.2/apps/app_queue.c (original)
+++ branches/1.6.2/apps/app_queue.c Fri Jul 2 11:59:11 2010
@@ -967,22 +967,27 @@
ast_debug(4, "%s is unavailable because his device state is 'invalid'\n", member->membername);
break;
}
+ goto default_case;
case AST_DEVICE_UNAVAILABLE:
if (conditions & QUEUE_EMPTY_UNAVAILABLE) {
ast_debug(4, "%s is unavailable because his device state is 'unavailable'\n", member->membername);
break;
}
+ goto default_case;
case AST_DEVICE_INUSE:
if (conditions & QUEUE_EMPTY_INUSE) {
ast_debug(4, "%s is unavailable because his device state is 'inuse'\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);
break;
}
+ /* Fall-through */
default:
+ default_case:
if (member->paused && (conditions & QUEUE_EMPTY_PAUSED)) {
ast_debug(4, "%s is unavailable because he is paused'\n", member->membername);
break;
More information about the asterisk-commits
mailing list