diff options
author | oehhar <harald.oehlmann@elmicron.de> | 2014-03-10 16:59:09 (GMT) |
---|---|---|
committer | oehhar <harald.oehlmann@elmicron.de> | 2014-03-10 16:59:09 (GMT) |
commit | 138267abe275e454e892fe55ad5f3e16fd032278 (patch) | |
tree | 5d3628973eef2f1995de0e8955d9c13ed21f60f0 | |
parent | ad589d66e2f1ec13f0ba2c482bd70547aaec8fba (diff) | |
download | tcl-138267abe275e454e892fe55ad5f3e16fd032278.zip tcl-138267abe275e454e892fe55ad5f3e16fd032278.tar.gz tcl-138267abe275e454e892fe55ad5f3e16fd032278.tar.bz2 |
Additional security for wrong pointer
-rw-r--r-- | win/tclWinSock.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/tclWinSock.c b/win/tclWinSock.c index 01a0f6f..d8b9129 100644 --- a/win/tclWinSock.c +++ b/win/tclWinSock.c @@ -1379,6 +1379,12 @@ CreateClientSocket( #ifdef DEBUGGING fprintf(stderr, "lastError: %d\n", Tcl_GetErrno()); #endif + /* + * Clear the tsd socket list pointer if we did not wait for + * the FD_CONNECT asyncroneously + */ + tsdPtr->pendingSocketInfo = NULL; + if (Tcl_GetErrno() == 0) { goto out; } |