diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-05-13 12:44:07 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-05-13 12:44:07 (GMT) |
commit | 19640d138b057a8250b163bb5dcd1f7131bd682a (patch) | |
tree | ed17d3ea0a9f63dcf9d8318707f3c663688cf09c /generic/tclEvent.c | |
parent | da2585a3986e433ef3d2fc269b67e6958499203f (diff) | |
download | tcl-19640d138b057a8250b163bb5dcd1f7131bd682a.zip tcl-19640d138b057a8250b163bb5dcd1f7131bd682a.tar.gz tcl-19640d138b057a8250b163bb5dcd1f7131bd682a.tar.bz2 |
Removed unused variable to reduce compiler warnings. [Bug 664745]
Diffstat (limited to 'generic/tclEvent.c')
-rw-r--r-- | generic/tclEvent.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index 60b7d7f..305a1e4 100644 --- a/generic/tclEvent.c +++ b/generic/tclEvent.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEvent.c,v 1.28 2003/02/22 09:23:16 vasiljevic Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.28.2.1 2003/05/13 12:44:07 dkf Exp $ */ #include "tclInt.h" @@ -763,13 +763,17 @@ void Tcl_Finalize() { ExitHandler *exitPtr; - ThreadSpecificData *tsdPtr; TclpInitLock(); if (subsystemsInitialized != 0) { subsystemsInitialized = 0; - tsdPtr = TCL_TSD_INIT(&dataKey); + /* + * Ensure the thread-specific data is initialised as it is + * used in Tcl_FinalizeThread() + */ + + (void) TCL_TSD_INIT(&dataKey); /* * Invoke exit handlers first. |