Edit report at https://bugs.php.net/bug.php?id=52863&edit=1
ID: 52863 Updated by: [email protected] Reported by: g dot delaportas at gmail dot com Summary: PHP Crash - RAM consuming -Status: Feedback +Status: No Feedback Type: Bug Package: Reproducible crash Operating System: Windows 7 PHP Version: Irrelevant New Comment: No feedback was provided. The bug is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so and change the status of the bug back to "Open". Thank you. Previous Comments: ------------------------------------------------------------------------ [2010-09-16 23:44:02] [email protected] please find instructions on how to use gdb backtrace function to report the stacktrace http://bugs.php.net/bugs-generating-backtrace.php ------------------------------------------------------------------------ [2010-09-16 18:53:49] [email protected] Did actually crash? Can you provide a backtrace? It's normal it consumes all the RAM (if you have no memory limit), since you are allocating memory recursively and indefinitely. ------------------------------------------------------------------------ [2010-09-16 18:16:47] g dot delaportas at gmail dot com Description: ------------ I use only native PHP code with no extra plugins loaded. The PHP 5.3.1 crashes and consumes all the RAM when I use the script below. This also happens to all the versions after 5.3.1. Test script: --------------- class Test_Crash { private $virtual_func; public function __construct() { $this->virtual_func = new Test_Crash; } } ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=52863&edit=1
