ID: 47062
Updated by: [email protected]
Reported By: charpour at gnet dot gr
-Status: Open
+Status: Bogus
Bug Type: Reproducible crash
Operating System: Debian 4.0 Gnu/Linux
PHP Version: 5.2.8
New Comment:
As of 5.3 the segfault was fixed for infinite recursive calls.
Now we get:
"Fatal error: Allowed memory size of 134217728 bytes exhausted at
/home/felipe/dev/php5/Zend/zend_execute.h:157 (tried to allocate 261900
bytes)"
but in 5.2 it's expected.
Thanks.
Previous Comments:
------------------------------------------------------------------------
[2009-01-10 19:56:39] charpour at gnet dot gr
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1212028704 (LWP 11428)]
0x0828500c in zend_std_get_method (object_ptr=0xbf4a70f4,
method_name=0xb7beaa3c "invalid", method_len=7)
at /root/packages/php-5.2.8/Zend/zend_object_handlers.c:771
771 zend_str_tolower_copy(lc_method_name, method_name, method_len);
------------------------------------------------------------------------
[2009-01-10 19:49:06] charpour at gnet dot gr
Description:
------------
When running the code below, php crashes with a Segmentation fault.
(Found that by mistake)
Reproduce code:
---------------
<?php
class SegFault {
public function invalid() {
return $this->invalid();
}
}
$segfault = new SegFault();
$segfault->invalid();
?>
Expected result:
----------------
not to seg fault
Actual result:
--------------
Segmentation fault
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=47062&edit=1