1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.5'

* PHP-8.5:
  Tweak stack limit values for gh20840.phpt
  Tweak stack limit values for gh20583.phpt
This commit is contained in:
Ilija Tovilo
2026-02-24 02:11:56 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ if (getenv('SKIP_ASAN')) {
}
?>
--INI--
zend.max_allowed_stack_size=128K
zend.max_allowed_stack_size=256K
--FILE--
<?php
class Node {

View File

@@ -10,11 +10,11 @@ if (getenv('SKIP_ASAN')) {
}
?>
--INI--
zend.max_allowed_stack_size=128K
zend.max_allowed_stack_size=256K
--FILE--
<?php
$a = null;
for ($i = 0; $i < 1000; $i++) {
for ($i = 0; $i < 3000; $i++) {
$a = [$i => $a];
}
try {