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
 [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

Add a Pull Request

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: Mon Aug 19 16:01:27 2024 UTC