Differences From Artifact [e371683b11]:
- File generic/tclIOUtil.c — part of check-in [e7a1588111] at 2012-06-28 20:21:47 on branch core-8-5-branch — Simplify tclFileSystem.h. Define structs where used. (user: dgp size: 139749)
To Artifact [baf79c4e6a]:
- File generic/tclIOUtil.c — part of check-in [ab38ae2fd5] at 2012-08-07 15:23:27 on branch core-8-5-branch — 3554250 Overlooked one field of cleanup in the thread exit handler for the filesystem subsystem. (user: dgp size: 139784)
| ︙ | |||
516 517 518 519 520 521 522 523 524 525 526 527 528 529 | 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 | + |
fsRecPtr = tsdPtr->filesystemList;
while (fsRecPtr != NULL) {
tmpFsRecPtr = fsRecPtr->nextPtr;
fsRecPtr->fsPtr = NULL;
ckfree((char *)fsRecPtr);
fsRecPtr = tmpFsRecPtr;
}
tsdPtr->filesystemList = NULL;
tsdPtr->initialized = 0;
}
int
TclFSCwdIsNative(void)
{
ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&fsDataKey);
|
| ︙ |