We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87756d7 commit 47c9836Copy full SHA for 47c9836
main/output.c
@@ -979,8 +979,8 @@ static inline php_output_handler_status_t php_output_handler_op(php_output_handl
979
int handler_count = php_output_get_level();
980
if (handler_count) {
981
php_output_handler **handlers = (php_output_handler **) zend_stack_base(&OG(handlers));
982
- for (int iii = 0; iii < handler_count; ++iii) {
983
- php_output_handler *curr_handler = handlers[iii];
+ for (int handler_num = 0; handler_num < handler_count; ++handler_num) {
+ php_output_handler *curr_handler = handlers[handler_num];
984
if (curr_handler == handler) {
985
handler->flags &= (~PHP_OUTPUT_HANDLER_DISABLED);
986
still_have_handler = true;
0 commit comments