ID: 47285
Comment by: danger at FreeBSD dot org
Reported By: danger at FreeBSD dot org
Status: Feedback
Bug Type: Date/time related
Operating System: FreeBSD
PHP Version: 5.2.8
New Comment:
r...@[web1 ~]# php -v
PHP 5.2.9-dev (cli) (built: Feb 5 2009 10:52:28)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies
with XCache v1.2.2, Copyright (c) 2005-2007, by mOo
I also applied distribution patches that come with FreeBSD (exluding
the patch-ext_date_lib_timelib_structs.h one), you may find them at
http://cvsweb.freebsd.org/ports/lang/php5/files.
Verified that the above PHP version still leaks memory, slower but
still.
Previous Comments:
------------------------------------------------------------------------
[2009-02-03 22:15:18] [email protected]
Please try using this CVS snapshot:
http://snaps.php.net/php5.2-latest.tar.gz
For Windows:
http://windows.php.net/snapshots/
------------------------------------------------------------------------
[2009-02-03 01:19:36] danger at FreeBSD dot org
Description:
------------
The strtotime() function still leaks memory in patched PHP 5.2.8 after
applying patches from http://news.php.net/php.cvs/55000. The memory leak
itself is much smaller than before applying fixes. Before, it took a few
seconds to leak 1gb of mem, now it takes some minutes however it's still
there.
This bug is related to http://bugs.php.net/bug.php?id=46889.
Reproduce code:
---------------
while (true)
{
$tmp = inc_stamp(time(), 1);
}
function inc_stamp($timestamp, $off_days)
{
return strtotime("+" . $off_days . " day", $timestamp);
}
Actual result:
--------------
Memory leak reported by top(1). If the script runs for longer time, it
gets killed by kernel since the system is going out of memory and swap.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=47285&edit=1