1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/bug70895.phpt
2020-07-10 21:05:28 +02:00

26 lines
750 B
PHP

--TEST--
Bug #70895 null ptr deref and segfault with crafted callable
--FILE--
<?php
try {
array_map("%n", 0);
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
array_map("%n %i", 0);
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
array_map("%n %i aoeu %f aoeu %p", 0);
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
array_map(): Argument #1 ($callback) must be a valid callback, function "%n" not found or invalid function name
array_map(): Argument #1 ($callback) must be a valid callback, function "%n %i" not found or invalid function name
array_map(): Argument #1 ($callback) must be a valid callback, function "%n %i aoeu %f aoeu %p" not found or invalid function name