36 lines
762 B
PHP
36 lines
762 B
PHP
--TEST--
|
|
Bug #81430 (Attribute instantiation leaves dangling execute_data pointer)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("zend-test")) die("skip zend_test extension not available");
|
|
?>
|
|
--INI--
|
|
memory_limit=20M
|
|
zend_test.observer.enabled=1
|
|
zend_test.observer.observe_all=1
|
|
--FILE--
|
|
<?php
|
|
|
|
#[\Attribute]
|
|
class A {
|
|
public function __construct() {
|
|
array_map("str_repeat", ["\xFF"], [100000000]); // cause a bailout
|
|
}
|
|
}
|
|
|
|
#[A]
|
|
function B() {}
|
|
|
|
$r = new \ReflectionFunction("B");
|
|
call_user_func([$r->getAttributes(A::class)[0], 'newInstance']);
|
|
?>
|
|
--EXPECTF--
|
|
<!-- init '%s' -->
|
|
<file '%s'>
|
|
<!-- init A::__construct() -->
|
|
<A::__construct>
|
|
|
|
Fatal error: Allowed memory size of %d bytes exhausted %s in %s on line %d
|
|
</A::__construct>
|
|
</file '%s'>
|