summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2009-08-20 14:59:53 (GMT)
committerdgp <dgp@users.sourceforge.net>2009-08-20 14:59:53 (GMT)
commit1f93e1ab3fd01d0f68a3cfe19185e00a07a7d884 (patch)
treeebe9df6b3a6817c865296445dfe7336d13f7c5c4 /ChangeLog
parent448e644c7e3981261214ecddd21923534377a6f2 (diff)
downloadtcl-1f93e1ab3fd01d0f68a3cfe19185e00a07a7d884.zip
tcl-1f93e1ab3fd01d0f68a3cfe19185e00a07a7d884.tar.gz
tcl-1f93e1ab3fd01d0f68a3cfe19185e00a07a7d884.tar.bz2
* generic/tclPathObj.c: [Bug 2806250] Prevent the storage of strings
starting with ~ in the "tail" part (normPathPtr field) of the path intrep when PATHFLAGS != 0. This establishes the assumptions relied on elsewhere that the name stored there is a relative path. Also refactored to make an AppendPath() routine instead of the cut/paste stanzas that were littered throughout.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 45e23f8..7ef505f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-08-20 Don Porter <dgp@users.sourceforge.net>
+
+ * generic/tclPathObj.c: [Bug 2806250] Prevent the storage of strings
+ starting with ~ in the "tail" part (normPathPtr field) of the path
+ intrep when PATHFLAGS != 0. This establishes the assumptions relied
+ on elsewhere that the name stored there is a relative path. Also
+ refactored to make an AppendPath() routine instead of the cut/paste
+ stanzas that were littered throughout.
+
2009-08-20 Donal K. Fellows <dkf@users.sf.net>
* generic/tclCmdIL.c (Tcl_LsortObjCmd): Plug memory leak.