diff options
author | dgp@users.sourceforge.net <dgp> | 2012-08-07 15:23:27 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2012-08-07 15:23:27 (GMT) |
commit | e26b983547dd9aa0ddffcf564cbc5e1816fbbb3e (patch) | |
tree | aea7781cdbf815938dda2ac139de25884fcc726b | |
parent | 9a2c39ff8b47f46e057ab9cb3e0e722cdff985aa (diff) | |
download | tcl-e26b983547dd9aa0ddffcf564cbc5e1816fbbb3e.zip tcl-e26b983547dd9aa0ddffcf564cbc5e1816fbbb3e.tar.gz tcl-e26b983547dd9aa0ddffcf564cbc5e1816fbbb3e.tar.bz2 |
3554250 Overlooked one field of cleanup in the thread exit handler
for the filesystem subsystem.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclIOUtil.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2012-08-07 Don Porter <dgp@users.sourceforge.net> + + * generic/tclIOUtil.c: [Bug 3554250] Overlooked one field of + cleanup in the thread exit handler for the filesystem subsystem. + 2012-07-31 Jan Nijtmans <nijtmans@users.sf.net> * win/nmakehlp.c: Backport from Tcl 8.6, but add -Q option from diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 6cf87ad..348e7bf 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -520,6 +520,7 @@ FsThrExitProc( ckfree((char *)fsRecPtr); fsRecPtr = tmpFsRecPtr; } + tsdPtr->filesystemList = NULL; tsdPtr->initialized = 0; } |