php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #19102 Crash in a recursive function with a buged return value
Submitted: 2002-08-26 05:31 UTC Modified: 2002-08-26 05:36 UTC
From: jemore at m6net dot fr Assigned:
Status: Wont fix Package: Reproducible crash
PHP Version: 4.2.2 OS: Win32
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jemore at m6net dot fr
New email:
PHP Version: OS:

 

 [2002-08-26 05:31 UTC] jemore at m6net dot fr
  function crashme($val)
  {
    if ($val == 0) return 0;
    return crashme($val--); // here is the bug. Should be $val - 1
  }
  echo crashme(1);

result in a "Unkown software exception" under WinNT.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-08-26 05:36 UTC] derick@php.net
We can't prevent all user errors. It was deciced before that this will not be fixed, as it's a huge performance impact and almost impossible to do it correct.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 00:01:41 2024 UTC