diff options
author | vincentdarley <vincentdarley> | 2004-01-09 13:19:41 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2004-01-09 13:19:41 (GMT) |
commit | cad6d20809446ccdea12285a5e4e611558e8c7dd (patch) | |
tree | 79db28188e15de5b994a34f4b4b026eb20991b79 /generic/tclIOUtil.c | |
parent | 76b1e24ed77f737f4f52f13fa752a6e3d1f2a04a (diff) | |
download | tcl-cad6d20809446ccdea12285a5e4e611558e8c7dd.zip tcl-cad6d20809446ccdea12285a5e4e611558e8c7dd.tar.gz tcl-cad6d20809446ccdea12285a5e4e611558e8c7dd.tar.bz2 |
vfs code tclfinalizefilesystem fix
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r-- | generic/tclIOUtil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 3dcb564..0ca497f 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.77.2.13 2003/12/17 09:32:35 vasiljevic Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.77.2.14 2004/01/09 13:19:42 vincentdarley Exp $ */ #include "tclInt.h" @@ -714,7 +714,7 @@ FsUpdateCwd(cwdObj) void TclFinalizeFilesystem() { - FilesystemRecord *fsRecPtr, *tmpFsRecPtr; + FilesystemRecord *fsRecPtr; /* * Assumption that only one thread is active now. Otherwise @@ -734,7 +734,7 @@ TclFinalizeFilesystem() fsRecPtr = filesystemList; while (fsRecPtr != NULL) { - tmpFsRecPtr = filesystemList->nextPtr; + FilesystemRecord *tmpFsRecPtr = fsRecPtr->nextPtr; if (fsRecPtr->fileRefCount <= 0) { /* The native filesystem is static, so we don't free it */ if (fsRecPtr != &nativeFilesystemRecord) { |