mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
18 lines
247 B
Plaintext
18 lines
247 B
Plaintext
|
--TEST--
|
||
|
Attempt to free invalid structure (result of ROPE_INIT is not a zval)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
set_error_handler(function () {
|
||
|
throw new Exception();
|
||
|
});
|
||
|
$a = [];
|
||
|
$b = "";
|
||
|
try {
|
||
|
echo "$a$b\n";
|
||
|
} catch (Exception $ex) {
|
||
|
}
|
||
|
?>
|
||
|
DONE
|
||
|
--EXPECT--
|
||
|
DONE
|