|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-07-02 15:16 UTC] sterling@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Mar 02 05:00:02 2026 UTC |
Description: ------------ The following code produces memory leak at zend_execute.c(2739). The reason is that @$var is parsed like expression, not a variable, so the fetch goes as read fetch, not write fetch. Reproduce code: --------------- <?php function &method1() { return @$foo; } echo method1(); ?>