mirror of
https://github.com/php/php-src.git
synced 2026-04-10 17:43:13 +02:00
13 lines
194 B
PHP
13 lines
194 B
PHP
--TEST--
|
|
Bug #79919 (Stack use-after-scope in define())
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
$b = error_log(0);
|
|
$b = simplexml_load_string('<xml/>', null, $b);
|
|
define(0, $b);
|
|
?>
|
|
--EXPECT--
|
|
0
|