ID:               32953
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Wont fix
 Bug Type:         Feature/Change Request
 Operating System: RHEL 3
 PHP Version:      4.3.11, 5.0.4
 New Comment:

Same reasons as why we won't protect against infinity recursion.


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

[2005-05-15 13:36:19] [EMAIL PROTECTED]

It was nice if php will dedect the recursive and take the control
before the segfault, and generate modest error message.
if for any reason thats not possible, preventing call of the error
hander function within the the same error handler function 'll be
handy.

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

[2005-05-11 21:59:44] [EMAIL PROTECTED]

What do you expect to get instead?
ob_end_flush() calls output handler, which in turn calls ob_end_flush()
and so on.

You'll get the same result with this code:
<?php
function f() {
   f();
}
f();
?>

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

[2005-05-05 12:20:54] [EMAIL PROTECTED]

Description:
------------
the bellow generating Segmentation fault on both 4.3.11, 5.0.4

the gdb trace looks like infinit recursive.

Reproduce code:
---------------
<?
ob_start(create_function("","ob_end_flush();"));echo "123";
?>



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


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

Reply via email to