diff options
author | vincentdarley <vincentdarley> | 2001-08-11 18:43:21 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2001-08-11 18:43:21 (GMT) |
commit | 2ae3f9e4b17879ee4cc7daba5a7cb109bef51a78 (patch) | |
tree | 161d118d7dfe1f3c40a3f01d82e371f371430537 /generic/tclIOUtil.c | |
parent | e3e4bcea9c4105e94029baa9f8c5ddad79fdc692 (diff) | |
download | tcl-2ae3f9e4b17879ee4cc7daba5a7cb109bef51a78.zip tcl-2ae3f9e4b17879ee4cc7daba5a7cb109bef51a78.tar.gz tcl-2ae3f9e4b17879ee4cc7daba5a7cb109bef51a78.tar.bz2 |
vfs-related fixes
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r-- | generic/tclIOUtil.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 50d1987..4dd0cfa 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -17,7 +17,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOUtil.c,v 1.13 2001/08/02 22:16:44 hobbs Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.14 2001/08/11 18:43:21 vincentdarley Exp $ */ #include "tclInt.h" @@ -548,6 +548,7 @@ Tcl_FSRegister(clientData, fsPtr) newFilesystemPtr->clientData = clientData; newFilesystemPtr->fsPtr = fsPtr; + newFilesystemPtr->refCount = 0; /* * Is this lock and wait strictly speaking necessary? Since any |