php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #21062 Recursive calls may SEGV
Submitted: 2002-12-17 03:36 UTC Modified: 2002-12-17 03:43 UTC
From: phpbug at vmlinuz dot nl Assigned:
Status: Wont fix Package: *Programming Data Structures
PHP Version: 4.3.0RC3 OS: Slackware 8.1, Linux 2.4.18 krnl
Private report: No CVE-ID: None
 [2002-12-17 03:36 UTC] phpbug at vmlinuz dot nl
compiled:
./configure && make && make install

script:
<?
function x(){
  x();
}
x();
?>

This little piece of code produces a SEGV. At some point the stack is full, and the program crashes. Why not die() before crashing?

OK, this code is so wrong... But still it should not SEGV.   
Discovered it on PHP 4.2.2 (apache mod) and especially built PHP 4.3.0RC3 (cmdline) to find that 4.3.0RC3 still does this.


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-12-17 03:43 UTC] cynic@php.net
this is a bazillionth report of this behavior, which won't be fixed for (IIRC) efficiency reasons.

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Sep 18 20:01:27 2024 UTC