sebastian               Sun Feb  1 03:34:50 2004 EDT

  Modified files:              
    /php-src/ext/pcre   php_pcre.c 
  Log:
  ZTS fix.
  
http://cvs.php.net/diff.php/php-src/ext/pcre/php_pcre.c?r1=1.154&r2=1.155&ty=u
Index: php-src/ext/pcre/php_pcre.c
diff -u php-src/ext/pcre/php_pcre.c:1.154 php-src/ext/pcre/php_pcre.c:1.155
--- php-src/ext/pcre/php_pcre.c:1.154   Sat Jan 31 17:36:33 2004
+++ php-src/ext/pcre/php_pcre.c Sun Feb  1 03:34:47 2004
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_pcre.c,v 1.154 2004/01/31 22:36:33 moriyoshi Exp $ */
+/* $Id: php_pcre.c,v 1.155 2004/02/01 08:34:47 sebastian Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -135,7 +135,7 @@
 PHPAPI pcre* pcre_get_compiled_regex(char *regex, pcre_extra **extra, int 
*preg_options TSRMLS_DC)
 {
        int compile_options;
-       return pcre_get_compiled_regex_ex(regex, extra, preg_options, 
&compile_options);
+       return pcre_get_compiled_regex_ex(regex, extra, preg_options, &compile_options 
TSRMLS_CC);
 }
 /* }}} */
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to