derick          Fri Sep 24 09:07:18 2004 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/ext/standard       array.c file.c 
  Log:
  [0.25]
  - Fixed some signed issues.
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/array.c?r1=1.199.2.36&r2=1.199.2.37&ty=u
Index: php-src/ext/standard/array.c
diff -u php-src/ext/standard/array.c:1.199.2.36 php-src/ext/standard/array.c:1.199.2.37
--- php-src/ext/standard/array.c:1.199.2.36     Tue Aug 10 02:04:12 2004
+++ php-src/ext/standard/array.c        Fri Sep 24 09:07:18 2004
@@ -22,7 +22,7 @@
 */
 
 
-/* $Id: array.c,v 1.199.2.36 2004/08/10 06:04:12 moriyoshi Exp $ */
+/* $Id: array.c,v 1.199.2.37 2004/09/24 13:07:18 derick Exp $ */
 
 #include "php.h"
 #include "php_ini.h"
@@ -1712,7 +1712,7 @@
        zval       **stack,                     /* Input stack */
                           **val;                       /* Value to be popped */
        char *key = NULL;
-       int key_len = 0;
+       uint key_len = 0;
        ulong index;
        
        /* Get the arguments and do error-checking */
http://cvs.php.net/diff.php/php-src/ext/standard/file.c?r1=1.279.2.61&r2=1.279.2.62&ty=u
Index: php-src/ext/standard/file.c
diff -u php-src/ext/standard/file.c:1.279.2.61 php-src/ext/standard/file.c:1.279.2.62
--- php-src/ext/standard/file.c:1.279.2.61      Tue Aug 17 10:10:03 2004
+++ php-src/ext/standard/file.c Fri Sep 24 09:07:18 2004
@@ -21,7 +21,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: file.c,v 1.279.2.61 2004/08/17 14:10:03 iliaa Exp $ */
+/* $Id: file.c,v 1.279.2.62 2004/09/24 13:07:18 derick Exp $ */
 
 /* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */
 
@@ -909,7 +909,7 @@
        HashPosition pos, opos;
        zval **wval, **oval;
        char *wkey, *okey;
-       int wkey_len, okey_len;
+       uint wkey_len, okey_len;
        int ret = SUCCESS;
        ulong num_key;
 

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

Reply via email to