mirror of
https://github.com/php/php-src.git
synced 2026-03-30 04:02:19 +02:00
26 lines
729 B
PHP
26 lines
729 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() expects parameter 1 to be a valid callback, function '%n' not found or invalid function name
|
|
array_map() expects parameter 1 to be a valid callback, function '%n %i' not found or invalid function name
|
|
array_map() expects parameter 1 to be a valid callback, function '%n %i aoeu %f aoeu %p' not found or invalid function name
|