diff options
author | dgp <dgp@users.sourceforge.net> | 2012-08-20 23:50:44 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-08-20 23:50:44 (GMT) |
commit | 06222bb9df87f66e184864bae38132be3cb4df28 (patch) | |
tree | 740b650a52897d03d9c3dbd0632fbed19c9e2d31 | |
parent | 9c36a658376bf2e20c50a154f69ec15762a49391 (diff) | |
parent | 79503b8aa18649d94ee9a98f1386d7f58787a408 (diff) | |
download | tcl-06222bb9df87f66e184864bae38132be3cb4df28.zip tcl-06222bb9df87f66e184864bae38132be3cb4df28.tar.gz tcl-06222bb9df87f66e184864bae38132be3cb4df28.tar.bz2 |
3559678 Fix bad filename normalization when the last component is the empty string.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclPathObj.c | 9 |
2 files changed, 12 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2012-08-20 Don Porter <dgp@users.sourceforge.net> + + * generic/tclPathObj.c: [Bug 3559678] Fix bad filename normalization + when the last component is the empty string. + 2012-08-20 Jan Nijtmans <nijtmans@users.sf.net> * win/tclWinPort.h: Remove wrapper macro for ntohs(): unnecessary, diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c index db07c0e..2b9ff87 100644 --- a/generic/tclPathObj.c +++ b/generic/tclPathObj.c @@ -1764,7 +1764,7 @@ Tcl_FSGetNormalizedPath( */ Tcl_Obj *dir, *copy; - int cwdLen, pathType; + int tailLen, cwdLen, pathType; pathType = Tcl_FSGetPathType(fsPathPtr->cwdPtr); dir = Tcl_FSGetNormalizedPath(interp, fsPathPtr->cwdPtr); @@ -1776,7 +1776,12 @@ Tcl_FSGetNormalizedPath( UpdateStringOfFsPath(pathPtr); } - copy = AppendPath(dir, fsPathPtr->normPathPtr); + Tcl_GetStringFromObj(fsPathPtr->normPathPtr, &tailLen); + if (tailLen) { + copy = AppendPath(dir, fsPathPtr->normPathPtr); + } else { + copy = Tcl_DuplicateObj(dir); + } Tcl_IncrRefCount(dir); Tcl_IncrRefCount(copy); |