stas Fri Jun 22 00:06:54 2007 UTC
Modified files: (Branch: PHP_4_4)
/php-src/ext/recode recode.c
Log:
fix #41765
http://cvs.php.net/viewvc.cgi/php-src/ext/recode/recode.c?r1=1.29.2.1.8.2&r2=1.29.2.1.8.3&diff_format=u
Index: php-src/ext/recode/recode.c
diff -u php-src/ext/recode/recode.c:1.29.2.1.8.2
php-src/ext/recode/recode.c:1.29.2.1.8.3
--- php-src/ext/recode/recode.c:1.29.2.1.8.2 Mon Jan 1 09:46:46 2007
+++ php-src/ext/recode/recode.c Fri Jun 22 00:06:54 2007
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: recode.c,v 1.29.2.1.8.2 2007/01/01 09:46:46 sebastian Exp $ */
+/* $Id: recode.c,v 1.29.2.1.8.3 2007/06/22 00:06:54 stas Exp $ */
/* {{{ includes & prototypes */
@@ -119,7 +119,7 @@
{
php_info_print_table_start();
php_info_print_table_row(2, "Recode Support", "enabled");
- php_info_print_table_row(2, "Revision", "$Revision: 1.29.2.1.8.2 $");
+ php_info_print_table_row(2, "Revision", "$Revision: 1.29.2.1.8.3 $");
php_info_print_table_end();
}
@@ -132,7 +132,7 @@
zval **str;
zval **req;
bool success;
- int r_len=0, r_alen =0;
+ size_t r_len=0, r_alen =0;
if (ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &req, &str) ==
FAILURE) {
WRONG_PARAM_COUNT;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php