diff options
author | dgp <dgp@users.sourceforge.net> | 2012-05-21 16:17:11 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-05-21 16:17:11 (GMT) |
commit | a89ca11a44b7af7cb1017a6cbaf59f53c3e16ed7 (patch) | |
tree | 666912b90f513715a922d466b249751d4edcf6fa /ChangeLog | |
parent | 03716dfee8f0f0df26a8c56e6a2b3ceeb9319dbc (diff) | |
download | tcl-a89ca11a44b7af7cb1017a6cbaf59f53c3e16ed7.zip tcl-a89ca11a44b7af7cb1017a6cbaf59f53c3e16ed7.tar.gz tcl-a89ca11a44b7af7cb1017a6cbaf59f53c3e16ed7.tar.bz2 |
When using Tcl_SetObjLength() calls to grow and shrink the objPtr->bytes buffer,
care must be taken that the value cannot possibly become pure Unicode. Calling
Tcl_AppendToObj() has the possibility of making such a conversion. Bug found
while valgrinding the trunk.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,11 @@ +2012-05-21 Don Porter <dgp@users.sourceforge.net> + + * generic/tclFileName.c: When using Tcl_SetObjLength() calls to grow + * generic/tclIOUtil.c: and shrink the objPtr->bytes buffer, care must be + taken that the value cannot possibly become pure Unicode. Calling + Tcl_AppendToObj() has the possibility of making such a conversion. Bug + found while valgrinding the trunk. + 2012-05-17 Donal K. Fellows <dkf@users.sf.net> * doc/expr.n: [Bug 3525462]: Corrected statement about what happens |