|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-04-08 04:49 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
[2015-04-08 04:49 UTC] requinix@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 16:00:01 2025 UTC |
Description: ------------ Segfault on call function/method at this function/method Test script: --------------- 1. <?php function foo() { foo(); } echo 'start '; foo(); echo 'finish'; ?> 2. <?php class Foo { public function getFoo() { return $this->getFoo(); } } echo 'start '; $foo = new Foo(); $foo->getFoo(); echo 'finish'; Expected result: ---------------- may be Fatal Error (something other than Segmentation fault) Actual result: -------------- 1. start Segmentation fault /var/log/messages Apr 8 14:31:46 debian kernel: [1220547.392275] php[30999]: segfault at 7ffe7699dfe7 ip 000000000077d57b sp 00007ffe7699dfa0 error 6 in php5[400000+80d000] 2. start Segmentation fault /var/log/messages Apr 8 14:34:37 debian77 kernel: [1220718.650950] php[31008]: segfault at 7ffe14edfff8 ip 000000000072177d sp 00007ffe14ee0028 error 6 in php5[400000+80d000]