|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-30 06:33 UTC] dave at dgx dot cz
[2006-05-30 08:03 UTC] tony2001@php.net
[2006-05-30 09:01 UTC] edink@php.net
[2006-05-30 09:17 UTC] dave at dgx dot cz
[2006-06-07 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 00:00:01 2025 UTC |
Description: ------------ Too long input string crashes PHP: Reproduce code: --------------- // in some situation 400 chars is enought to reproduce error $s = str_repeat('*', 5000); preg_match_all('#(\*)+#', $s, $matches); Actual result: -------------- 4.3.10 crash 4.3.11 crash 4.3.3 crash 4.3.4 crash 4.3.5 crash 4.3.6 crash 4.3.7 crash 4.3.8 crash 4.3.9 crash 4.4.0 crash 4.4.1 crash 4.4.2 crash 5.0.0 OK 5.0.1 OK 5.0.2 OK 5.0.3 OK 5.0.4 OK 5.0.5 OK 5.1.1 OK 5.1.2 OK 5.1.3 crash 5.1.4 crash