ID: 47062
User updated by: charpour at gnet dot gr
Reported By: charpour at gnet dot gr
Status: Open
Bug Type: Reproducible crash
Operating System: Debian 4.0 Gnu/Linux
PHP Version: 5.2.8
New Comment:
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);
Previous Comments:
------------------------------------------------------------------------
[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