Ticket #406 (new defect)

Opened 5 months ago

Random failures on Zend engine test anonymous_func_001.phpt

Reported by: hans Assigned to: hans
Priority: minor Milestone:
Component: eAccelerator Version: trunk
Keywords: Cc:

Description

anonymous_func_001.phpt fails randomly when restoring. Reported error is 'Fatal error: Call to undefined function () in /Users/hans/Sites/ea_test/anonymous_func_001.phpt.php on line 9'

Problem is not optimizer related.

<?php

for ($i = 0; $i < 10; $i++) {

$a = create_function(, 'return '. $i .';'); var_dump($a());

$b = "\0lambda_". ($i + 1); var_dump($b());

}

?>