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 68ca387 commit f313b65Copy full SHA for f313b65
Zend/Optimizer/zend_optimizer.c
@@ -1347,7 +1347,7 @@ static void zend_foreach_op_array_helper(
1347
zend_op_array *op_array, zend_op_array_func_t func, void *context) {
1348
func(op_array, context);
1349
for (uint32_t i = 0; i < op_array->num_dynamic_func_defs; i++) {
1350
- func(op_array->dynamic_func_defs[i], context);
+ zend_foreach_op_array_helper(op_array->dynamic_func_defs[i], func, context);
1351
}
1352
1353
0 commit comments