summaryrefslogtreecommitdiff
path: root/Zend/tests/bug75241.phpt
blob: 1751bbee7675ef0f53c266bff47c0a888a83f8b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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)