diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | generic/tclIORTrans.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2011-09-21 Andreas Kupries <andreask@activestate.com> + + * generic/tclIORTrans.c (ForwardOpToOwnerThread): Fixed the + missing initialization of the 'dsti' field. Reported by Don + Porter, on chat. + 2011-09-20 Don Porter <dgp@users.sourceforge.net> * generic/tclIORChan.c: Re-using the "interp" field to signal a dead diff --git a/generic/tclIORTrans.c b/generic/tclIORTrans.c index ef37d5c..0617df3 100644 --- a/generic/tclIORTrans.c +++ b/generic/tclIORTrans.c @@ -2403,6 +2403,7 @@ ForwardOpToOwnerThread( resultPtr->src = Tcl_GetCurrentThread(); resultPtr->dst = dst; + resultPtr->dsti = rtPtr->interp; resultPtr->done = NULL; resultPtr->result = -1; resultPtr->evPtr = evPtr; |