diff options
author | dgp <dgp@users.sourceforge.net> | 2009-06-10 21:39:49 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-06-10 21:39:49 (GMT) |
commit | 6e902e710f444b6f54b6134c61317a4d37a22804 (patch) | |
tree | 19cc906f005b23d5be4c300bb0f6c4c9c8742dd2 /ChangeLog | |
parent | 2a3653593e13fea9eee1652863db7b373b0b3fa7 (diff) | |
download | tcl-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-- | ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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] |