diff options
author | dgp <dgp@users.sourceforge.net> | 2004-10-06 03:43:26 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-10-06 03:43:26 (GMT) |
commit | 8d980d5957f426b122d14c323065a4d58821ac92 (patch) | |
tree | 608233318f114ea2abc89c1bd0475eaaded9904a /ChangeLog | |
parent | aa7af790fd920113d69eab504fe4ea31d672fd08 (diff) | |
download | tcl-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-- | ChangeLog | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |