tony2001                Fri Sep 12 10:30:18 2008 UTC

  Modified files:              
    /php-src/ext/standard       file.c 
  Log:
  fix typo
  test before commit!
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/file.c?r1=1.527&r2=1.528&diff_format=u
Index: php-src/ext/standard/file.c
diff -u php-src/ext/standard/file.c:1.527 php-src/ext/standard/file.c:1.528
--- php-src/ext/standard/file.c:1.527   Fri Sep 12 01:10:56 2008
+++ php-src/ext/standard/file.c Fri Sep 12 10:30:18 2008
@@ -21,7 +21,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: file.c,v 1.527 2008/09/12 01:10:56 felipe Exp $ */
+/* $Id: file.c,v 1.528 2008/09/12 10:30:18 tony2001 Exp $ */
 
 /* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */
 
@@ -2053,7 +2053,7 @@
 
        count = zend_hash_num_elements(Z_ARRVAL_P(fields));
        zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(fields), &pos);
-       while (zend_hash_get_current_data_ex(Z_ARRVAL_P(fields), (void **) 
&field, &pos) == SUCCESS) {
+       while (zend_hash_get_current_data_ex(Z_ARRVAL_P(fields), (void **) 
&field_tmp, &pos) == SUCCESS) {
                field = **field_tmp;
 
                if (Z_TYPE_PP(field_tmp) != IS_STRING) {



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

Reply via email to