summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.c
diff options
context:
space:
mode:
authorandreask <andreask>2012-05-09 19:09:51 (GMT)
committerandreask <andreask>2012-05-09 19:09:51 (GMT)
commite20f1abdc32a0550e6c840dcb99c848b39d33537 (patch)
tree37e4e46bdd84967a8687cefad0aacc23728bf2e9 /generic/tclIO.c
parentb085bdf17a65111cfda61a55fbe5aeedd61b5954 (diff)
downloadtcl-e20f1abdc32a0550e6c840dcb99c848b39d33537.zip
tcl-e20f1abdc32a0550e6c840dcb99c848b39d33537.tar.gz
tcl-e20f1abdc32a0550e6c840dcb99c848b39d33537.tar.bz2
* generic/tclIORChan.c [Bug 3522560]: Fixed the crash, enabled the
test case. Modified [chan postevent] to properly inject the event(s) into the owner thread's event queue for execution in the correct context. Renamed the ForwardOpTo...Thread() function to match with our terminology.
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r--generic/tclIO.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c
index 86ee6ed..9e729c4 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.c
@@ -8760,7 +8760,7 @@ CreateScriptRecord(
/*
* Initialize the structure before calling Tcl_CreateChannelHandler,
- * because a reflected channel caling 'chan postevent' aka
+ * because a reflected channel calling 'chan postevent' aka
* 'Tcl_NotifyChannel' in its 'watch'Proc will invoke
* 'TclChannelEventScriptInvoker' immediately, and we do not wish it to
* see uninitialized memory and crash. See [Bug 2918110].