ID:               46156
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
 Status:           Assigned
 Bug Type:         Reproducible crash
 Operating System: *
 PHP Version:      5CVS-2008-11-11
 Assigned To:      dmitry
 New Comment:

I've discovered one more crash and reported here of the same type:
http://bugs.php.net/bug.php?id=46754


Previous Comments:
------------------------------------------------------------------------

[2008-09-23 10:00:25] [EMAIL PROTECTED]

Description:
------------
Creating a new instance of the same class in a class destructor which
causes infinite recursion will cause PHP to crash, instead of throwing a
memory_limit error.

Dmitry told me to report this so it wouldn't be forgotten.

Reproduce code:
---------------
<?php
        class Crash
        {
                public function __destruct()
                {
                        new self;
                }
        }

        new Crash;
?>

Expected result:
----------------
memory_limit error

Actual result:
--------------
Crash


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=46156&edit=1

Reply via email to