summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2005-10-29 19:16:32 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2005-10-29 19:16:32 (GMT)
commite4937d5509607c42d8ca01d05763d87e8b3e43ce (patch)
treead0e330970d975778094123140c4149e361438bb /ChangeLog
parent4b9135a520fdab05e275330093a65b2e1d957438 (diff)
downloadtcl-e4937d5509607c42d8ca01d05763d87e8b3e43ce.zip
tcl-e4937d5509607c42d8ca01d05763d87e8b3e43ce.tar.gz
tcl-e4937d5509607c42d8ca01d05763d87e8b3e43ce.tar.bz2
* generic/tclTrace.c (TraceVarProc): [Bug 1337229], partial
fix. Insure that a second call with TCL_TRACE_DESTROYED does not lead to a second call to Tcl_EventuallyFree(). It is still true that that second call should not happen, so the bug is not completely fixed. * tests/trace.test (test-18.3-4): added tests for bugs #1337229 and 1338280.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c4944fc..8089b14 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-10-29 Miguel Sofer <msofer@users.sf.net>
+
+ * generic/tclCmdMZ.c (TraceVarProc): [Bug 1337229], partial
+ fix. Insure that a second call with TCL_TRACE_DESTROYED does not
+ lead to a second call to Tcl_EventuallyFree(). It is still true
+ that that second call should not happen, so the bug is not
+ completely fixed.
+ * tests/trace.test (test-18.3-4): added tests for bugs #1337229
+ and 1338280.
+
2005-10-23 Vince Darley <vincentdarley@sourceforge.net>
* generic/tclFileName.c: fix to memory leak in glob [Bug 1335006]