|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-05-06 19:50 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 07:00:01 2025 UTC |
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