summaryrefslogtreecommitdiffstats
path: root/generic/tclIOUtil.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2006-08-21 14:56:26 (GMT)
committerdgp <dgp@noemail.net>2006-08-21 14:56:26 (GMT)
commit685b8860edd488fdd10c15a2116a1cf7db506901 (patch)
tree2076b8afe07d439719c80ad50337bb6e138f2220 /generic/tclIOUtil.c
parent1059c6163f0de58be25a2551f298b9ccf403630b (diff)
downloadtcl-685b8860edd488fdd10c15a2116a1cf7db506901.zip
tcl-685b8860edd488fdd10c15a2116a1cf7db506901.tar.gz
tcl-685b8860edd488fdd10c15a2116a1cf7db506901.tar.bz2
* generic/tclIOUtil.c: Revisions to complete the thread finalization
of the cwdPathPtr. [Bug 1536142] FossilOrigin-Name: 4557a5daa498498080e23172460af780c321a75e
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r--generic/tclIOUtil.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c
index 55e8b32..b5cf2ec 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.29 2006/03/28 10:52:38 das Exp $
+ * RCS: @(#) $Id: tclIOUtil.c,v 1.77.2.30 2006/08/21 14:56:28 dgp Exp $
*/
#include "tclInt.h"
@@ -546,6 +546,7 @@ FsThrExitProc(cd)
/* Trash the cwd copy */
if (tsdPtr->cwdPathPtr != NULL) {
Tcl_DecrRefCount(tsdPtr->cwdPathPtr);
+ tsdPtr->cwdPathPtr = NULL;
}
/* Trash the filesystems cache */
fsRecPtr = tsdPtr->filesystemList;
@@ -556,6 +557,7 @@ FsThrExitProc(cd)
}
fsRecPtr = tmpFsRecPtr;
}
+ tsdPtr->initialized = 0;
}
int