diff options
author | vasiljevic <zv@archiware.com> | 2003-09-01 12:30:38 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2003-09-01 12:30:38 (GMT) |
commit | 6df292f4e80bfc89e813c03f93dd233e5f3ff988 (patch) | |
tree | fd443bdb0c92e1d00131fb322af9bd7c459a6a22 /generic/tclIOUtil.c | |
parent | bb5652ca9a3aa78ddc0ea024835007253fcd5249 (diff) | |
download | tcl-6df292f4e80bfc89e813c03f93dd233e5f3ff988.zip tcl-6df292f4e80bfc89e813c03f93dd233e5f3ff988.tar.gz tcl-6df292f4e80bfc89e813c03f93dd233e5f3ff988.tar.bz2 |
Backported fix from HEAD for Bug 788780
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 b5bd88d..bfe08b4 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.7 2003/07/18 20:28:32 hobbs Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.77.2.8 2003/09/01 12:30:38 vasiljevic Exp $ */ #include "tclInt.h" @@ -586,11 +586,11 @@ FsRecacheFilesystemList(void) /* Trash the current cache */ fsRecPtr = tsdPtr->filesystemList; while (fsRecPtr != NULL) { - tmpFsRecPtr = fsRecPtr; + tmpFsRecPtr = fsRecPtr->nextPtr; if (--fsRecPtr->fileRefCount <= 0) { ckfree((char *)fsRecPtr); } - fsRecPtr = tmpFsRecPtr->nextPtr; + fsRecPtr = tmpFsRecPtr; } tsdPtr->filesystemList = NULL; |