summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-10-06 03:43:26 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-10-06 03:43:26 (GMT)
commit8d980d5957f426b122d14c323065a4d58821ac92 (patch)
tree608233318f114ea2abc89c1bd0475eaaded9904a /ChangeLog
parentaa7af790fd920113d69eab504fe4ea31d672fd08 (diff)
downloadtcl-8d980d5957f426b122d14c323065a4d58821ac92.zip
tcl-8d980d5957f426b122d14c323065a4d58821ac92.tar.gz
tcl-8d980d5957f426b122d14c323065a4d58821ac92.tar.bz2
* generic/tclBasic.c:
* generic/tclBinary.c: * generic/tclCmdAH.c: * generic/tclCmdIL.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--ChangeLog1
1 files changed, 1 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0cbe1e1..eeb72e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
* generic/tclBasic.c:
* generic/tclBinary.c:
* generic/tclCmdAH.c:
+ * generic/tclCmdIL.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