summaryrefslogtreecommitdiffstats
path: root/generic/tclPathObj.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2008-06-23 15:34:15 (GMT)
committerdgp <dgp@users.sourceforge.net>2008-06-23 15:34:15 (GMT)
commited6a7e090c4d40ac85fd33572d92347eb5a9e327 (patch)
tree070f168de31a65650f57077ac12d0028dcbbc7b2 /generic/tclPathObj.c
parenta646385d673df42529a9c5a97493876e9c671d33 (diff)
downloadtcl-ed6a7e090c4d40ac85fd33572d92347eb5a9e327.zip
tcl-ed6a7e090c4d40ac85fd33572d92347eb5a9e327.tar.gz
tcl-ed6a7e090c4d40ac85fd33572d92347eb5a9e327.tar.bz2
* generic/tclPathObj.c: Fixed bug in Tcl_GetTranslatedPath() when
operating on the "Special path" variant of the "path" Tcl_ObjType intrep. A full normalization was getting done, in particular, coercing relative paths to absolute, contrary to what the function of producing the "translated path" is supposed to do. [Bug 1972879].
Diffstat (limited to 'generic/tclPathObj.c')
-rw-r--r--generic/tclPathObj.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c
index 89fb210..f292c8a 100644
--- a/generic/tclPathObj.c
+++ b/generic/tclPathObj.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclPathObj.c,v 1.68 2008/06/23 04:18:34 dgp Exp $
+ * RCS: @(#) $Id: tclPathObj.c,v 1.69 2008/06/23 15:34:15 dgp Exp $
*/
#include "tclInt.h"
@@ -1596,14 +1596,16 @@ Tcl_FSGetTranslatedPath(
srcFsPathPtr = PATHOBJ(pathPtr);
if (srcFsPathPtr->translatedPathPtr == NULL) {
if (PATHFLAGS(pathPtr) != 0) {
- int numBytes;
- const char *bytes = Tcl_GetStringFromObj(pathPtr, &numBytes);
- Tcl_Obj *copy = Tcl_NewStringObj(bytes, numBytes);
- Tcl_IncrRefCount(copy);
- retObj = Tcl_FSGetTranslatedPath(interp, copy);
+ /*
+ * We lack a translated path result, but we have a directory
+ * (cwdPtr) and a tail (normPathPtr), and if we join the
+ * translated version of cwdPtr to normPathPtr, we'll get the
+ * translated result we need, and can store it for future use.
+ */
+ retObj = Tcl_FSJoinToPath(Tcl_FSGetTranslatedPath(interp,
+ srcFsPathPtr->cwdPtr), 1, &(srcFsPathPtr->normPathPtr));
srcFsPathPtr->translatedPathPtr = retObj;
Tcl_IncrRefCount(retObj);
- Tcl_DecrRefCount(copy);
} else {
/*
* It is a pure absolute, normalized path object. This is