php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #24205 return @$var by reference leaks memory
Submitted: 2003-06-16 08:29 UTC Modified: 2003-07-02 15:16 UTC
From: stas@php.net Assigned:
Status: Closed Package: Scripting Engine problem
PHP Version: 5CVS-2003-06-16 (dev) OS: All
Private report: No CVE-ID: None
 [2003-06-16 08:29 UTC] stas@php.net
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();
?>



Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-07-02 15:16 UTC] sterling@php.net
This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Aug 28 20:00:02 2025 UTC