stas            Fri Jun 22 00:05:54 2007 UTC

  Modified files:              
    /php-src/ext/recode recode.c 
  Log:
  fix #41765
  
http://cvs.php.net/viewvc.cgi/php-src/ext/recode/recode.c?r1=1.41&r2=1.42&diff_format=u
Index: php-src/ext/recode/recode.c
diff -u php-src/ext/recode/recode.c:1.41 php-src/ext/recode/recode.c:1.42
--- php-src/ext/recode/recode.c:1.41    Mon Jan  1 09:29:28 2007
+++ php-src/ext/recode/recode.c Fri Jun 22 00:05:54 2007
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
  
-/* $Id: recode.c,v 1.41 2007/01/01 09:29:28 sebastian Exp $ */
+/* $Id: recode.c,v 1.42 2007/06/22 00:05:54 stas Exp $ */
 
 /* {{{ includes & prototypes */
 
@@ -122,7 +122,7 @@
 {
        php_info_print_table_start();
        php_info_print_table_row(2, "Recode Support", "enabled");
-       php_info_print_table_row(2, "Revision", "$Revision: 1.41 $");
+       php_info_print_table_row(2, "Revision", "$Revision: 1.42 $");
        php_info_print_table_end();
 }
 
@@ -132,7 +132,7 @@
 {
        RECODE_REQUEST request = NULL;
        char *r = NULL;
-       int r_len = 0, r_alen = 0;
+       size_t r_len = 0, r_alen = 0;
        int req_len, str_len;
        char *req, *str;
 

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

Reply via email to