ID:               45817
 Updated by:       [EMAIL PROTECTED]
 Reported By:      foo at bar dot com
-Status:           Open
+Status:           Bogus
 Bug Type:         Reproducible crash
 Operating System: Linux Ubuntu 8.04 stock
 PHP Version:      5.2.6
 New Comment:

what you do is:

function a() { a(); }
a();

recursion > not a bug.


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

[2008-08-14 07:40:03] foo at bar dot com

Description:
------------
Yet another great example why you guys should concentrate on stability
instead of marketing.

This makes me think that you're incompetent 

Reproduce code:
---------------
<?php

class A {
  public function __construct() {
    self::doIt();
  }
  
  public static function doIt() {
    C::doIt();
  }
}

class C extends A {
}

$c = new C;


Expected result:
----------------
What ever but segfault

Actual result:
--------------
segfault


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


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

Reply via email to