diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | generic/tclIOUtil.c | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2003-09-01 Zoran Vasiljevic <zoran@archiware.com> + + * generic/tclIOUtil.c: backported fix from HEAD [Bug 788780] + 2003-08-27 Don Porter <dgp@users.sourceforge.net> * generic/tclUtil.c: Corrected [Bug 411825] and other bugs in 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; |