diff options
author | dgp <dgp@users.sourceforge.net> | 2010-04-30 20:52:51 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2010-04-30 20:52:51 (GMT) |
commit | fc29863f3fe1e359b0a7727e0b8a46d7b5cef69e (patch) | |
tree | 1e6f657a3753fec35f1cec4796c310ee5a4cc91a /ChangeLog | |
parent | 312f44ead9b03addb227c8fb0ee54ba9310a8032 (diff) | |
download | tcl-fc29863f3fe1e359b0a7727e0b8a46d7b5cef69e.zip tcl-fc29863f3fe1e359b0a7727e0b8a46d7b5cef69e.tar.gz tcl-fc29863f3fe1e359b0a7727e0b8a46d7b5cef69e.tar.bz2 |
* generic/tclBinary.c (TclAppendBytesToByteArray): Add comments
* generic/tclInt.h (TclAppendBytesToByteArray): placing overflow
protection responsibility on caller. Convert "len" argument to signed
int which any value already vetted for overflow issues will fit into.
* generic/tclStringObj.c: Update caller; standardize panic msg.
* generic/tclBinary.c (UpdateStringOfByteArray): Add panic
when the generated string representation would grow beyond Tcl's
size limits. [Bug 2994924]
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,15 @@ +2010-04-30 Don Porter <dgp@users.sourceforge.net> + + * generic/tclBinary.c (TclAppendBytesToByteArray): Add comments + * generic/tclInt.h (TclAppendBytesToByteArray): placing overflow + protection responsibility on caller. Convert "len" argument to signed + int which any value already vetted for overflow issues will fit into. + * generic/tclStringObj.c: Update caller; standardize panic msg. + + * generic/tclBinary.c (UpdateStringOfByteArray): Add panic + when the generated string representation would grow beyond Tcl's + size limits. [Bug 2994924] + 2010-04-30 Donal K. Fellows <dkf@users.sf.net> * generic/tclBinary.c (TclAppendBytesToByteArray): Add extra armour |