php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #32968 memory_limit
Submitted: 2005-05-06 18:35 UTC Modified: 2005-05-07 05:28 UTC
From: pasha dot zubkov at gmail dot com Assigned:
Status: Not a bug Package: Scripting Engine problem
PHP Version: 5.0.4 OS: Linux 2.6.11.6-grsec
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 you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: pasha dot zubkov at gmail dot com
New email:
PHP Version: OS:

 

 [2005-05-06 18:35 UTC] pasha dot zubkov at gmail dot com
Description:
------------
both php-5.0.4 and php-PHP_5_0-05052005 segfaults with this code

Reproduce code:
---------------
<?php
function rec() {
	static $count = 0;
	echo "$count ";
	$count++;
	rec();
}
rec();
?>

Actual result:
--------------
[snip] 14954 14955 14956 Segmentation fault

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-05-06 19:50 UTC] derick@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Sep 12 05:01:28 2024 UTC