summaryrefslogtreecommitdiffstats
path: root/win/tclWinPipe.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-08 09:06:26 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-08 09:06:26 (GMT)
commit9da656958a059e3277973198b1d56cad865f1d94 (patch)
treedcf0d495bb08b656cb85984f61c91d3e0761d244 /win/tclWinPipe.c
parent8f3d5d5d602cf5ff43e0b3d4b616f726850331a2 (diff)
parent03f01c8e1aa9aaa69b783493a14cc8711e980962 (diff)
downloadtcl-9da656958a059e3277973198b1d56cad865f1d94.zip
tcl-9da656958a059e3277973198b1d56cad865f1d94.tar.gz
tcl-9da656958a059e3277973198b1d56cad865f1d94.tar.bz2
merge zipfs
Diffstat (limited to 'win/tclWinPipe.c')
-rw-r--r--win/tclWinPipe.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c
index 3422ae5..3d58903 100644
--- a/win/tclWinPipe.c
+++ b/win/tclWinPipe.c
@@ -3270,7 +3270,7 @@ TclPipeThreadStop(
HANDLE hThread)
{
TclPipeThreadInfo *pipeTI = *pipeTIPtr;
- HANDLE evControl, wakeEvent;
+ HANDLE evControl;
int state;
if (!pipeTI) {
@@ -3278,7 +3278,6 @@ TclPipeThreadStop(
}
pipeTI = *pipeTIPtr;
evControl = pipeTI->evControl;
- wakeEvent = pipeTI->evWakeUp;
pipeTI->evWakeUp = NULL;
/*
* Try to sane stop the pipe worker, corresponding its current state
@@ -3346,8 +3345,8 @@ TclPipeThreadStop(
/*
* Cancel all sync-IO of this thread (may be blocked there).
*/
- if (tclWinProcs->cancelSynchronousIo) {
- tclWinProcs->cancelSynchronousIo(hThread);
+ if (tclWinProcs.cancelSynchronousIo) {
+ tclWinProcs.cancelSynchronousIo(hThread);
}
/*