moriyoshi               Tue Dec 23 06:06:43 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/ext/standard       file.c 
  Log:
  Oops.
  
  
Index: php-src/ext/standard/file.c
diff -u php-src/ext/standard/file.c:1.279.2.48 php-src/ext/standard/file.c:1.279.2.49
--- php-src/ext/standard/file.c:1.279.2.48      Tue Dec 23 06:02:26 2003
+++ php-src/ext/standard/file.c Tue Dec 23 06:06:42 2003
@@ -21,7 +21,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: file.c,v 1.279.2.48 2003/12/23 11:02:26 moriyoshi Exp $ */
+/* $Id: file.c,v 1.279.2.49 2003/12/23 11:06:42 moriyoshi Exp $ */
 
 /* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */
 
@@ -2261,7 +2261,7 @@
                s++;
        }
        /* strip trailing spaces */
-       while (e >= s && isspace((int)*(unsigned char *)(--e)) && *e != delimiter);
+       while (--e >= s && isspace((int)*(unsigned char *)(e)) && *e != delimiter);
        e++;
 
        array_init(return_value);

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

Reply via email to