mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
1179686f62
Closes GH-5446 Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
11 lines
234 B
PHP
11 lines
234 B
PHP
--TEST--
|
|
Bug #47109 (Memory leak on $a->{"a"."b"} when $a is not an object)
|
|
--FILE--
|
|
<?php
|
|
$a->{"a"."b"};
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined variable $a in %s on line %d
|
|
|
|
Warning: Attempt to read property 'ab' on null in %s on line %d
|