ID: 16080
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Analyzed
Bug Type: Scripting Engine problem
Operating System: Linux
PHP Version: 4.3.0-dev
New Comment:
The same problem is reported, but I'll keep this one for now :)
Currently, deleting or assining buffer variable ($page in this case)
causes segfault.
Workaround is
<?php
function th($page)
{
$new_page="more as 5 Characters. Stack Problem?";
return $new_page;
}
ob_start("th");
echo "12345";
ob_end_flush();
?>
Previous Comments:
------------------------------------------------------------------------
[2002-03-14 14:42:36] [EMAIL PROTECTED]
------------------------------------------------------------------------
[2002-03-14 14:41:59] [EMAIL PROTECTED]
Reproduced with latest CVS.
------------------------------------------------------------------------
[2002-03-14 14:38:04] [EMAIL PROTECTED]
following php code give me a segmention fault:
<?php
function th($page)
{
$page="more as 5 Characters. Stack Problem?";
return $page;
}
ob_start("th");
echo "12345";
ob_end_flush();
?>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=16080&edit=1