summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-10-06 05:52:20 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-10-06 05:52:20 (GMT)
commit329125679e274130e2405579330bd37c327f39c8 (patch)
treed99cff9d30ee720bbfff62625aec4088cc2a16b7 /ChangeLog
parent8d980d5957f426b122d14c323065a4d58821ac92 (diff)
downloadtcl-329125679e274130e2405579330bd37c327f39c8.zip
tcl-329125679e274130e2405579330bd37c327f39c8.tar.gz
tcl-329125679e274130e2405579330bd37c327f39c8.tar.bz2
* generic/tclBasic.c:
* generic/tclBinary.c: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclCompExpr.c: * generic/tclDictObj.c: It is a poor practice to directly set or append to the value of the objResult of an interp, because that value might be shared, and in that circumstance a Tcl_Panic() will be the result. Searched for example of this practice and replaced with safer alternatives, often using the Tcl_AppendResult() routine that dkf just rehabilitated.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index eeb72e1..22f42b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
* generic/tclBinary.c:
* generic/tclCmdAH.c:
* generic/tclCmdIL.c:
+ * generic/tclCmdMZ.c:
+ * generic/tclCompExpr.c:
+ * generic/tclDictObj.c:
It is a poor practice to directly set or append to the value
of the objResult of an interp, because that value might be
shared, and in that circumstance a Tcl_Panic() will be the