Skip to content

Commit c51659e

Browse files
committed
Reduce limit
1 parent b1be5a0 commit c51659e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/Optimizer/sccp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ static inline int ct_eval_func_call(
580580
&& num_args == 2
581581
&& Z_TYPE_P(args[0]) == IS_STRING
582582
&& Z_TYPE_P(args[1]) == IS_LONG
583-
&& zend_safe_address(Z_STRLEN_P(args[0]), Z_LVAL_P(args[1]), 0, &overflow) < 64 * 1024 * 1024
583+
&& zend_safe_address(Z_STRLEN_P(args[0]), Z_LVAL_P(args[1]), 0, &overflow) < 64 * 1024
584584
&& !overflow) {
585585
/* pass */
586586
} else if ((zend_string_equals_literal(name, "array_merge")

0 commit comments

Comments
 (0)