tony2001 Thu Jul 3 14:00:21 2008 UTC
Modified files: (Branch: PHP_5_3)
/php-src/ext/standard string.c
Log:
size_t -> int
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/string.c?r1=1.445.2.14.2.69.2.28&r2=1.445.2.14.2.69.2.29&diff_format=u
Index: php-src/ext/standard/string.c
diff -u php-src/ext/standard/string.c:1.445.2.14.2.69.2.28
php-src/ext/standard/string.c:1.445.2.14.2.69.2.29
--- php-src/ext/standard/string.c:1.445.2.14.2.69.2.28 Tue Jul 1 11:27:05 2008
+++ php-src/ext/standard/string.c Thu Jul 3 14:00:20 2008
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: string.c,v 1.445.2.14.2.69.2.28 2008/07/01 11:27:05 felipe Exp $ */
+/* $Id: string.c,v 1.445.2.14.2.69.2.29 2008/07/03 14:00:20 tony2001 Exp $ */
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
@@ -183,7 +183,8 @@
PHP_FUNCTION(bin2hex)
{
char *result, *data;
- size_t newlen, datalen;
+ size_t newlen;
+ int datalen;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &data,
&datalen) == FAILURE) {
return;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php