summaryrefslogtreecommitdiffstats
path: root/generic/tclIOSock.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-03-31 08:52:03 (GMT)
committerhobbs <hobbs>2000-03-31 08:52:03 (GMT)
commit3c56f64822ed7b64de23a900456152fe8ee1fb60 (patch)
tree27c79cab0f46f3ede18026925120382d8f111363 /generic/tclIOSock.c
parent82a82afca9929d66fcf5356ef5a3d8fae735c4fb (diff)
downloadtcl-3c56f64822ed7b64de23a900456152fe8ee1fb60.zip
tcl-3c56f64822ed7b64de23a900456152fe8ee1fb60.tar.gz
tcl-3c56f64822ed7b64de23a900456152fe8ee1fb60.tar.bz2
* generic/tclBasic.c (Tcl_DeleteCommandFromToken): Added comments
noting the need to pair ckalloc with ckfree. [Bug: 4262] * generic/tclInt.decls: * generic/tclIntPlatDecls.h: * generic/tclStubInit.c: * win/tclWin32Dll.c: removed TclWinSynchSpawn (vestige of Win32s support).
Diffstat (limited to 'generic/tclIOSock.c')
-rw-r--r--generic/tclIOSock.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclIOSock.c b/generic/tclIOSock.c
index 1d6c642..82d10a8 100644
--- a/generic/tclIOSock.c
+++ b/generic/tclIOSock.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIOSock.c,v 1.4 1999/11/19 06:34:23 hobbs Exp $
+ * RCS: @(#) $Id: tclIOSock.c,v 1.5 2000/03/31 08:52:04 hobbs Exp $
*/
#include "tclInt.h"
@@ -91,6 +91,9 @@ TclSockMinimumBuffers(sock, size)
int size; /* Minimum buffer size */
{
int current;
+ /*
+ * Should be socklen_t, but HP10.20 (g)cc chokes
+ */
size_t len;
len = sizeof(int);