From 2b5f0d87b769ee297f2bd893a70c8bf2a63e36d9 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sat, 3 Mar 2007 19:07:51 +0000 Subject: [PATCH] - Fix realpath() logic --- ext/standard/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/file.c b/ext/standard/file.c index 664e4da72d..bdd4ccb1e0 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -2697,7 +2697,7 @@ PHP_FUNCTION(realpath) #ifdef ZTS if (VCWD_ACCESS(resolved_path_buff, F_OK)) { RETVAL_FALSE; - } + } else #endif if (UG(unicode)) { -- 2.50.1