------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugs.exim.org/show_bug.cgi?id=1233 Petr Pisar <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Petr Pisar <[email protected]> 2012-05-10 07:48:30 --- Your regular expression is equivalent to /'(.)*'/s. And the segfault occurs even with /(.)*/ because you exhaust stack with enormous number of possessing matches. You can increase stack size (ulimit -s) or recompile pcre to use heap instead of stack. -- Configure bugmail: http://bugs.exim.org/userprefs.cgi?tab=email -- ## List details at https://lists.exim.org/mailman/listinfo/pcre-dev
