[PHP-CVS] Re: [PHP-DEV] Re: this causes a segfault cvs: php-src(PHP_4_3) /ext/pcre config.m4 php_pcre.c

2003-08-03 Thread Andrei Zmievski
On Thu, 10 Jul 2003, Jani Taskinen wrote: Fixed in CVS now. :) What did you fix exactly and where? I don't see it. -Andrei -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-CVS] Re: [PHP-DEV] Re: this causes a segfault cvs: php-src(PHP_4_3) /ext/pcreconfig.m4 php_pcre.c

2003-08-03 Thread Alan Knowles
He added a decleration for pcre_* in the wrappers eg. #define pcre_x php_pcre_ as apache2 uses pcre internally As far as I could tell though it still segfauts after that change... - although not had a chance to test it recently.. Regards Alan Andrei Zmievski wrote: On Thu, 10 Jul

[PHP-CVS] Re: [PHP-DEV] Re: this causes a segfault cvs: php-src(PHP_4_3)

2003-07-12 Thread Alan Knowles
Jani Taskinen wrote: Fixed in CVS now. :) nice try:) - something as simple as this still kills it.. ? echo preg_match('/abc/','fredabc',$matches); ? Regards Alan --Jani On Thu, 10 Jul 2003, Alan Knowles wrote: @@ -420,7 +421,32 @@ size_offsets = num_subpats * 3;

[PHP-CVS] Re: [PHP-DEV] Re: this causes a segfault cvs: php-src(PHP_4_3)

2003-07-12 Thread Jani Taskinen
5.0.0b2-dev int(1) int(1) array(1) { [0]= string(3) abc } pre ?php echo phpversion(), br\n; var_dump(preg_match('/php/i','PHP is the web scripting language of choice.')); var_dump(preg_match('/abc/','fredabc',$matches)); var_dump($matches); show_source('pcre.php'); ? pre Aka.

[PHP-CVS] Re: [PHP-DEV] Re: this causes a segfault cvs: php-src(PHP_4_3)

2003-07-12 Thread Alan Knowles
it's a PHP_4_3 with apache2filter - clean checkout. eg. rm php-src;cvs co Regards Alan Jani Taskinen wrote: 5.0.0b2-dev int(1) int(1) array(1) { [0]= string(3) abc } pre ?php echo phpversion(), br\n; var_dump(preg_match('/php/i','PHP is the web scripting language of choice.'));

[PHP-CVS] Re: [PHP-DEV] Re: this causes a segfault cvs: php-src(PHP_4_3)/ext/pcre config.m4 php_pcre.c

2003-07-10 Thread Jani Taskinen
Fixed in CVS now. :) --Jani On Thu, 10 Jul 2003, Alan Knowles wrote: @@ -420,7 +421,32 @@ size_offsets = num_subpats * 3; offsets = (int *)safe_emalloc(size_offsets, sizeof(int), 0); -/* Allocate match sets array and initialize the values */ +/* +