summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2004-07-05 22:40:58 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2004-07-05 22:40:58 (GMT)
commitfa306be9d7adf64d777414f45a59dd7b332b90ac (patch)
treef3a58df5284412aa94acfbf00c2e5ee72de51503 /ChangeLog
parent40431793ba19022873eb80b047ac6c72e52e98c8 (diff)
downloadtcl-fa306be9d7adf64d777414f45a59dd7b332b90ac.zip
tcl-fa306be9d7adf64d777414f45a59dd7b332b90ac.tar.gz
tcl-fa306be9d7adf64d777414f45a59dd7b332b90ac.tar.bz2
* generic/tclBasic.c (DeleteInterpProc): fix for [Bug 983660],
found by pspjuth. Tear down the global namespace before freeing the interp handle, to allow the bytecodes to free their non-shared literals. * generic/tclLiteral.c (TclReleaseLiteral): moved special code for self-ref so that it is also used for non-shared literals. Possible bug found by inspection.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6e06fb2..848f22a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2004-07-05 Miguel Sofer <msofer@users.sf.net>
+
+ * generic/tclBasic.c (DeleteInterpProc): fix for [Bug 983660],
+ found by pspjuth. Tear down the global namespace before freeing
+ the interp handle, to allow the bytecodes to free their non-shared
+ literals.
+ * generic/tclLiteral.c (TclReleaseLiteral): moved special code for
+ self-ref so that it is also used for non-shared literals. Possible
+ bug found by inspection.
+
2004-07-03 Miguel Sofer <msofer@users.sf.net>
* generic/tclExecute.c (ExprRoundFunc):