tony2001 Tue Oct 3 13:44:15 2006 UTC Modified files: /php-src/ext/standard string.c Log: fix ZTS build http://cvs.php.net/viewvc.cgi/php-src/ext/standard/string.c?r1=1.597&r2=1.598&diff_format=u Index: php-src/ext/standard/string.c diff -u php-src/ext/standard/string.c:1.597 php-src/ext/standard/string.c:1.598 --- php-src/ext/standard/string.c:1.597 Mon Oct 2 19:18:14 2006 +++ php-src/ext/standard/string.c Tue Oct 3 13:44:14 2006 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: string.c,v 1.597 2006/10/02 19:18:14 andrei Exp $ */ +/* $Id: string.c,v 1.598 2006/10/03 13:44:14 tony2001 Exp $ */ /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */ @@ -6379,7 +6379,7 @@ char retstr[256]; int retlen=0; - if (zend_parse_parameters(ZEND_NUM_ARGS(), "t|l", &input, &input_len, + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "t|l", &input, &input_len, &type, &mode) == FAILURE) { return; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php