From: Etienne Kneuss Date: Fri, 12 Aug 2011 22:20:35 +0000 (+0000) Subject: Fix CID 593 Mark the missing break by an explicit comment, we DO intend to fall throu... X-Git-Tag: php-5.5.0alpha1~1549 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80742189b80dc39ab1a8f292675775b1dca0864e;p=php Fix CID 593 Mark the missing break by an explicit comment, we DO intend to fall through here --- diff --git a/ext/spl/spl_iterators.c b/ext/spl/spl_iterators.c index 57f3d5200f..860cccee4d 100755 --- a/ext/spl/spl_iterators.c +++ b/ext/spl/spl_iterators.c @@ -214,6 +214,7 @@ next_step: zend_clear_exception(TSRMLS_C); } } + /* fall through */ case RS_START: if (iterator->funcs->valid(iterator TSRMLS_CC) == FAILURE) { break;