mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
14 lines
193 B
PHP
14 lines
193 B
PHP
--TEST--
|
|
Bug #75241 (Null pointer dereference in zend_mm_alloc_small())
|
|
--FILE--
|
|
<?php
|
|
function eh(){}
|
|
|
|
set_error_handler('eh');
|
|
|
|
$d->d = &$d + $d->d/=0;
|
|
var_dump($d);
|
|
?>
|
|
--EXPECT--
|
|
float(INF)
|