diff options
author | vasiljevic <zv@archiware.com> | 2004-06-10 17:10:18 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2004-06-10 17:10:18 (GMT) |
commit | 585b5b95cd2a7542cf4d49d89a50a72c654195f7 (patch) | |
tree | 9bc3a8fe749c139c6bcb4c9bb7d9a325ed1825f0 /generic/tclIOUtil.c | |
parent | b883043c6a750576d959ad7cab775c41c6076cae (diff) | |
download | tcl-585b5b95cd2a7542cf4d49d89a50a72c654195f7.zip tcl-585b5b95cd2a7542cf4d49d89a50a72c654195f7.tar.gz tcl-585b5b95cd2a7542cf4d49d89a50a72c654195f7.tar.bz2 |
Fixed Tcl_FSChdir not to forcefully update private cwd cached copy.
This fixes the problem of [cwd] reporting relative file paths under
certain cirumstances.
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r-- | generic/tclIOUtil.c | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 75f9849..094a2f5 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -17,7 +17,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOUtil.c,v 1.104 2004/06/09 16:15:23 vasiljevic Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.105 2004/06/10 17:11:02 vasiljevic Exp $ */ #include "tclInt.h" @@ -2642,7 +2642,21 @@ Tcl_FSChdir(pathPtr) * calculated above, and we must therefore cache that * information. */ - if (retVal == 0) { + + /* + * The correct logic which performs the part below is + * already part of the Tcl_FSGetCwd() call, so no need + * to replicate it again. This will have a side effect + * though. The private authoritative representation of + * the current working directory stored in cwdPathPtr + * in static memory will be out-of-sync with the real + * OS-maintained value. The first call to Tcl_FSGetCwd + * will however recalculate the private copy to match + * the OS-value so everything will work right. + * We leave the below as a reminder until it's proven ok. + */ + + if (/* temporarily disabled */0 && retVal == 0) { /* * Note that this normalized path may be different to what * we found above (or at least a different object), if the |