|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-12-24 11:21 UTC] felipe@php.net
-Status: Open
+Status: Not a bug
[2012-12-24 11:21 UTC] felipe@php.net
[2012-12-24 12:19 UTC] saprykin dot dmitry at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 07:00:01 2025 UTC |
Description: ------------ simple regular expression causes segmentation fault. Details are below. Test script: --------------- $text = str_repeat('text ', 870); echo 'Text size: '.strlen($text).PHP_EOL; preg_match('/([a-z]\s*)+/', $text); echo 'Working!'; Expected result: ---------------- Text size: 4350 Working! Actual result: -------------- Text size: 4350 Segmentation fault (core dumped)