mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
We shouldn't assume that call->prev_execute_data is NULL here. The value needs to be preserved for call chains.
15 lines
277 B
PHP
15 lines
277 B
PHP
--TEST--
|
|
Bug #80096: Segmentation fault with named arguments in nested call
|
|
--FILE--
|
|
<?php
|
|
|
|
function println($arg) {
|
|
echo $arg, "\n";
|
|
}
|
|
|
|
println(htmlentities("The < character is encoded as <", double_encode: false));
|
|
|
|
?>
|
|
--EXPECT--
|
|
The < character is encoded as <
|