fmk Wed Aug 9 18:15:06 2006 UTC
Modified files:
/php-src/ext/standard string.c
Log:
Fix ZTS builds
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/string.c?r1=1.569&r2=1.570&diff_format=u
Index: php-src/ext/standard/string.c
diff -u php-src/ext/standard/string.c:1.569 php-src/ext/standard/string.c:1.570
--- php-src/ext/standard/string.c:1.569 Wed Aug 9 17:40:21 2006
+++ php-src/ext/standard/string.c Wed Aug 9 18:15:06 2006
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: string.c,v 1.569 2006/08/09 17:40:21 andrei Exp $ */
+/* $Id: string.c,v 1.570 2006/08/09 18:15:06 fmk Exp $ */
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
@@ -4367,7 +4367,7 @@
char *str, *what;
int str_len, what_len;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_DC, "SS", &str,
&str_len,
+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "SS", &str,
&str_len,
&what, &what_len) ==
FAILURE) {
return;
}
@@ -4423,7 +4423,7 @@
char *str;
int str_len;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_DC, "S", &str,
&str_len) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "S", &str,
&str_len) == FAILURE) {
return;
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php