mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
c5401854fc
This should fix most of the remaining issues with tabs and spaces being mixed in tests.
37 lines
736 B
PHP
37 lines
736 B
PHP
--TEST--
|
|
Bug #54268 (Double free when destroy_zend_class fails)
|
|
--INI--
|
|
memory_limit=8M
|
|
--SKIPIF--
|
|
<?php
|
|
$zend_mm_enabled = getenv("USE_ZEND_ALLOC");
|
|
if ($zend_mm_enabled === "0") {
|
|
die("skip Zend MM disabled");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
class DestructableObject
|
|
{
|
|
public function __destruct()
|
|
{
|
|
DestructableObject::__destruct();
|
|
}
|
|
}
|
|
class DestructorCreator
|
|
{
|
|
public function __destruct()
|
|
{
|
|
$this->test = new DestructableObject;
|
|
}
|
|
}
|
|
class Test
|
|
{
|
|
public static $mystatic;
|
|
}
|
|
$x = new Test();
|
|
Test::$mystatic = new DestructorCreator();
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Allowed memory size of %s bytes exhausted%s(tried to allocate %s bytes) in %s on line %d
|