28968640bd
I hit an array on the debug build when I tried to run the following
program:
<?php
function f() {
for (;;) {}
}
f();
This diff removes the offending assert since it is technically possible to
have m_maxStackDepth be equal to 0.
6 linhas
52 B
PHP
6 linhas
52 B
PHP
<?php
|
|
function f() {
|
|
for (;;) {}
|
|
}
|
|
echo "Done\n";
|