mirror of
https://github.com/php/php-src.git
synced 2024-12-16 05:15:03 +08:00
09547c64c2
In some cases new code requires two reallocations insead of one. Fixes oss-fuzz #31716, #36196, #39739 and #40002
17 lines
306 B
PHP
17 lines
306 B
PHP
--TEST--
|
|
string offset 007 indirect string modification by error handler
|
|
--FILE--
|
|
<?php
|
|
set_error_handler(function($code, $msg) {
|
|
echo "Err: $msg\n";
|
|
$GLOBALS['a']='';
|
|
});
|
|
$a=['a'];
|
|
$a[0][$d]='b';
|
|
var_dump($a);
|
|
?>
|
|
--EXPECT--
|
|
Err: Undefined variable $d
|
|
Err: String offset cast occurred
|
|
string(0) ""
|