From 335c87f94dc73e6d6dbe5d29d59a1c221373bcbc Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Fri, 3 May 2002 02:43:45 +0000 Subject: * fhandler_proc.cc (fhandler_proc::fstat): Use fhandler name rather than path_conv name. (fhandler_proc::open): Ditto. * fhandler_process.cc (fhandler_process::fstat): Use fhandler name rather than path_conv name. (fhandler_process::open): Ditto. * fhandler_registry.cc (fhandler_registry::fstat): Use fhandler name rather than path_conv name. (fhandler_registry::open): Ditto. * path.cc (path_conv::check): Don't copy posix path when virtual. (mount_info::conv_to_win32_path): Don't zero string when isproc. Just derive normal windows path. * path.h (path_conv::clear_normalized_path): Declare new method. * path.cc (path_conv::clear_normalized_path): Define new method. * dtable.cc (build_fhandler_from_name): Clear normalized path when finished to conserve space. --- winsup/cygwin/fhandler_process.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'winsup/cygwin/fhandler_process.cc') diff --git a/winsup/cygwin/fhandler_process.cc b/winsup/cygwin/fhandler_process.cc index b05e07bf0..b51b17628 100644 --- a/winsup/cygwin/fhandler_process.cc +++ b/winsup/cygwin/fhandler_process.cc @@ -80,7 +80,7 @@ fhandler_process::fhandler_process (): int fhandler_process::fstat (struct __stat64 *buf, path_conv *pc) { - int file_type = exists ((const char *) get_name ()); + int file_type = exists (get_name ()); (void) fhandler_base::fstat (buf, pc); buf->st_mode &= ~_IFMT & NO_W; @@ -126,7 +126,7 @@ fhandler_process::open (path_conv *pc, int flags, mode_t mode) goto out; const char *path; - path = (const char *) *pc + proc_len + 1; + path = get_name () + proc_len + 1; pid = atoi (path); while (*path != 0 && !SLASH_P (*path)) path++; -- cgit v1.2.3