19 lines
338 B
PHP
19 lines
338 B
PHP
--TEST--
|
|
GH-14626: is_zend_ptr() may crash for non-zend ptrs when huge blocks exist
|
|
--EXTENSIONS--
|
|
zend_test
|
|
--FILE--
|
|
<?php
|
|
|
|
// Ensure there is at least one huge_block
|
|
$str = str_repeat('a', 2*1024*1024);
|
|
|
|
// Check that is_zend_ptr() does not crash
|
|
zend_test_is_zend_ptr(0);
|
|
zend_test_is_zend_ptr(1<<30);
|
|
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
==DONE==
|