diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-10-11 21:43:44 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-10-11 21:43:44 (GMT) |
commit | de46d7767eadf5c2cdf992a3abd1413e15662674 (patch) | |
tree | 6ec54166e1a86a7d7a558c818ffc68b1a294cad1 /generic | |
parent | 04ea07263f1075d0b484d36c21726daf94cdd02f (diff) | |
parent | c20fffb1c16d1b8a7ed25de25f292df6297d176f (diff) | |
download | tcl-de46d7767eadf5c2cdf992a3abd1413e15662674.zip tcl-de46d7767eadf5c2cdf992a3abd1413e15662674.tar.gz tcl-de46d7767eadf5c2cdf992a3abd1413e15662674.tar.bz2 |
Fix [3cc1d91345]: duplicate calls to TclpFreeAllocCache() on thread exists
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclThreadAlloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclThreadAlloc.c b/generic/tclThreadAlloc.c index 018f006..2ee758e 100644 --- a/generic/tclThreadAlloc.c +++ b/generic/tclThreadAlloc.c @@ -1106,9 +1106,9 @@ TclFinalizeThreadAlloc(void) * * TclFinalizeThreadAllocThread -- * - * This procedure is used to destroy single thread private resources used - * in this file. - * Called in TclpFinalizeThreadData when a thread exits (Tcl_FinalizeThread). + * This procedure is used to destroy single thread private resources + * defined in this file. Called either during Tcl_FinalizeThread() or + * Tcl_Finalize(). * * Results: * None. |