Re: php 7 preg_match always causes segmentation fault

2016-11-29 Thread Yaakov Selkowitz
On 2016-11-29 12:02, 59yfvs+f4bkzv...@guerrillamail.com wrote: It's more serious than I thought as ANY use of preg_match causes the segfaulting, even in interactive mode. This does not occur for me with either 32-bit or 64-bit cygwin. -- Yaakov -- Problem reports: http://cygwin.com/prob

Re: php 7 preg_match always causes segmentation fault

2016-11-29 Thread 59yfvs+f4bkzvgzw
It's more serious than I thought as ANY use of preg_match causes the segfaulting, even in interactive mode. $ php -a Interactive shell php > $msg="!Hello"; if ( preg_match('#^!Hello\b#', $msg) ) echo "wee"; Segmentation fault (core dumped) php > if ( preg_match('/d/', 'dba') ) echo "wee"; Segmen