From 13922b39ca6112dbfb903160f939f759005b6dc4 Mon Sep 17 00:00:00 2001 From: davygrvy Date: Sun, 28 Sep 2003 10:36:00 +0000 Subject: * win/tclWinPipe.c: The windows port of expect can call TclWinAddProcess before any of the other pipe functions. Added a missing PipeInit() call to make sure the initialization happens. --- win/tclWinPipe.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c index 90f4ae1..1348ea9 100644 --- a/win/tclWinPipe.c +++ b/win/tclWinPipe.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinPipe.c,v 1.36 2003/08/15 01:40:59 chengyemao Exp $ + * RCS: @(#) $Id: tclWinPipe.c,v 1.37 2003/09/28 10:36:00 davygrvy Exp $ */ #include "tclWinInt.h" @@ -2630,6 +2630,9 @@ TclWinAddProcess(hProcess, id) DWORD id; /* Global process identifier */ { ProcInfo *procPtr = (ProcInfo *) ckalloc(sizeof(ProcInfo)); + + PipeInit(); + procPtr->hProcess = hProcess; procPtr->dwProcessId = id; Tcl_MutexLock(&pipeMutex); -- cgit v0.12