Fix CID 593 Mark the missing break by an explicit comment, we DO intend to fall through here

This commit is contained in:
Etienne Kneuss 2011-08-12 22:20:35 +00:00
parent bb7a93081e
commit b03860a935

View File

@ -214,11 +214,12 @@ next_step:
zend_clear_exception(TSRMLS_C);
}
}
/* fall through */
case RS_START:
if (iterator->funcs->valid(iterator TSRMLS_CC) == FAILURE) {
break;
}
object->iterators[object->level].state = RS_TEST;
object->iterators[object->level].state = RS_TEST;
/* break; */
case RS_TEST:
ce = object->iterators[object->level].ce;