diff options
author | hobbs <hobbs> | 2001-06-28 01:22:21 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-06-28 01:22:21 (GMT) |
commit | 293dbdc050e3bd444292641282727a0bd24eef27 (patch) | |
tree | 913c84ddcaadd7359ee726c2c7be0a8aeb368389 /ChangeLog | |
parent | 2b6587fc6cf0bc144393a46fcf12967e8cdcbde6 (diff) | |
download | tcl-293dbdc050e3bd444292641282727a0bd24eef27.zip tcl-293dbdc050e3bd444292641282727a0bd24eef27.tar.gz tcl-293dbdc050e3bd444292641282727a0bd24eef27.tar.bz2 |
* generic/tclInt.h:
* generic/tclObj.c:
* unix/Makefile.in: added a -DPURIFY mode that makes Tcl_Obj's
allocated and free singularly (instead of in alloc in blocks and
never free) to allow checkers like Purify to operate better.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -1,5 +1,24 @@ 2001-06-27 Jeff Hobbs <jeffh@ActiveState.com> + * generic/tclInt.h: + * generic/tclObj.c: + * unix/Makefile.in: added a -DPURIFY mode that makes Tcl_Obj's + allocated and free singularly (instead of in alloc in blocks and + never free) to allow checkers like Purify to operate better. + + * library/encoding/koi8-u.enc: added koi8-u (Ukranian variant) + encoding. + + * tests/subst.test: + * generic/tclUtf.c (Tcl_UtfBackslash): Corrected backslash + handling of multibyte utf-8 chars. [Bug #217987] + + * generic/tclCmdIL.c (InfoProcsCmd): fixed potential mem leak in + info procs that created objects without using them. + + * generic/tclCompCmds.c (TclCompileStringCmd): fixed mem leak when + string command failed to parse the subcommand. + * doc/interp.n: * doc/unknown.n: updated notes about what is in a safe interp. [Bug #218605] |