helly           Sat Mar  3 19:07:51 2007 UTC

  Modified files:              
    /php-src/ext/standard       file.c 
  Log:
  - Fix realpath() logic
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/file.c?r1=1.485&r2=1.486&diff_format=u
Index: php-src/ext/standard/file.c
diff -u php-src/ext/standard/file.c:1.485 php-src/ext/standard/file.c:1.486
--- php-src/ext/standard/file.c:1.485   Fri Feb 23 16:21:31 2007
+++ php-src/ext/standard/file.c Sat Mar  3 19:07:51 2007
@@ -21,7 +21,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: file.c,v 1.485 2007/02/23 16:21:31 tony2001 Exp $ */
+/* $Id: file.c,v 1.486 2007/03/03 19:07:51 helly Exp $ */
 
 /* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */
 
@@ -2697,7 +2697,7 @@
 #ifdef ZTS
                if (VCWD_ACCESS(resolved_path_buff, F_OK)) {
                        RETVAL_FALSE;
-               }
+               } else
 #endif
 
                if (UG(unicode)) {

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

Reply via email to