1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 22:11:12 +02:00
Files
archived-php-src/Zend/tests/bug70895.phpt
Máté Kocsis 960318ed95 Change argument error message format
Closes GH-5211
2020-02-26 15:00:08 +01: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