From c5d37e6879aa7956a20a9c7c1961a53c46b8d195 Mon Sep 17 00:00:00 2001 From: Stefan Esser Date: Thu, 2 Dec 2004 00:44:22 +0000 Subject: [PATCH] MFH --- TSRM/tsrm_virtual_cwd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c index 3f8192340f..0b3833caab 100644 --- a/TSRM/tsrm_virtual_cwd.c +++ b/TSRM/tsrm_virtual_cwd.c @@ -321,7 +321,8 @@ CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func path = resolved_path; path_length = strlen(path); } else { - return 1; + /* disable for now + return 1; */ } } } else { /* Concat current directory with relative path and then run realpath() on it */ @@ -347,8 +348,9 @@ CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func path = resolved_path; path_length = strlen(path); } else { + /* disable for now free(tmp); - return 1; + return 1; */ } } free(tmp); -- 2.50.1