summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2009-06-10 21:39:49 (GMT)
committerdgp <dgp@users.sourceforge.net>2009-06-10 21:39:49 (GMT)
commit6e902e710f444b6f54b6134c61317a4d37a22804 (patch)
tree19cc906f005b23d5be4c300bb0f6c4c9c8742dd2 /ChangeLog
parent2a3653593e13fea9eee1652863db7b373b0b3fa7 (diff)
downloadtcl-6e902e710f444b6f54b6134c61317a4d37a22804.zip
tcl-6e902e710f444b6f54b6134c61317a4d37a22804.tar.gz
tcl-6e902e710f444b6f54b6134c61317a4d37a22804.tar.bz2
* generic/tclStringObj.c: Revised [format] to not overflow the
integer calculations computing the length of the %ll formats of really big integers. Also added protections so that [format]s that would produce results overflowing the maximum string length of Tcl values throw a normal Tcl error instead of a panic. [Bug 2801413]
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d645d55..d3462ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2009-06-10 Don Porter <dgp@users.sourceforge.net>
+ * generic/tclStringObj.c: Revised [format] to not overflow the
+ integer calculations computing the length of the %ll formats of
+ really big integers. Also added protections so that [format]s that
+ would produce results overflowing the maximum string length of Tcl
+ values throw a normal Tcl error instead of a panic. [Bug 2801413]
+
* generic/tclStringObj.c: Corrected failures to deal with the
"pure unicode" representation of an empty string. Thanks to Julian
Noble for reporting the problem. [Bug 2803109]