summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2006-05-13 17:14:26 (GMT)
committerdgp <dgp@users.sourceforge.net>2006-05-13 17:14:26 (GMT)
commitd730fcbe31aa683b8bb53ad39bb62b9bdeb4da53 (patch)
tree62daf206dd953c84bf2d6c034c533787389345fe /ChangeLog
parent9c66f2efe92c41679bdae68387c64dd1b6400be4 (diff)
downloadtcl-d730fcbe31aa683b8bb53ad39bb62b9bdeb4da53.zip
tcl-d730fcbe31aa683b8bb53ad39bb62b9bdeb4da53.tar.gz
tcl-d730fcbe31aa683b8bb53ad39bb62b9bdeb4da53.tar.bz2
* generic/tclProc.c (ProcCompileProc): When a bump of the compile
epoch forces the re-compile of a proc body, take care not to overwrite any Proc struct that may be referred to on the active call stack. This fixes [Bug 148218]. Note that the fix will not be effective for code that calls the private routine TclProcCompileProc() directly.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e0a91a3..010359d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2006-05-13 Don Porter <dgp@users.sourceforge.net>
+
+ * generic/tclProc.c (ProcCompileProc): When a bump of the compile
+ epoch forces the re-compile of a proc body, take care not to
+ overwrite any Proc struct that may be referred to on the active
+ call stack. This fixes [Bug 148218]. Note that the fix will not be
+ effective for code that calls the private routine TclProcCompileProc()
+ directly.
+
2006-05-13 Daniel Steffen <das@users.sourceforge.net>
* generic/tclEvent.c (HandleBgErrors): fix leak. [Coverity issue 86]