php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #49365 Memory leak in create_function()
Submitted: 2009-08-25 19:26 UTC Modified: 2009-08-25 19:31 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: pearl1985 at interia dot pl Assigned:
Status: Closed Package: *Programming Data Structures
PHP Version: 5.3.0 OS: Windows XP x64
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: pearl1985 at interia dot pl
New email:
PHP Version: OS:

 

 [2009-08-25 19:26 UTC] pearl1985 at interia dot pl
Description:
------------
Looping create_function() leaks memory even if you unset the object.

Reproduce code:
---------------
<?
while(true)
{
	$var = create_function('', '$a = 0;');
	unset($var);
}
?>

Expected result:
----------------
No increase in memory usage.

Actual result:
--------------
Grows around 100-150meg per sec.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-08-25 19:31 UTC] pearl1985 at interia dot pl
I readed this http://bugs.php.net/bug.php?id=6333

Closed.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 11:01:30 2024 UTC