php-src/Zend/tests/bug70895.phpt

16 lines
601 B
Plaintext
Raw Normal View History

2015-11-12 06:35:34 +00:00
--TEST--
2015-11-12 12:37:45 +00:00
Bug #70895 null ptr deref and segfault with crafted callable
2015-11-12 06:35:34 +00:00
--FILE--
<?php
array_map("%n", 0);
array_map("%n %i", 0);
array_map("%n %i aoeu %f aoeu %p", 0);
?>
--EXPECTREGEX--
Warning: array_map\(\) expects parameter 1 to be a valid callback, function '%n' not found or invalid function name in .+
Warning: array_map\(\) expects parameter 1 to be a valid callback, function '%n %i' not found or invalid function name in .+
Warning: array_map\(\) expects parameter 1 to be a valid callback, function '%n %i aoeu %f aoeu %p' not found or invalid function name in .+bug70895.php on line \d+