diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-06-24 20:07:08 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-06-24 20:07:08 (GMT) |
commit | eee8927e2b314d25d605dbf6337ba7d5ed5a8a46 (patch) | |
tree | 92f6646260678c2a5a490c82febb89f3dc354f98 /generic/tclEvent.c | |
parent | 71740887a1b116bd5a298e4fcc67cf486fa56149 (diff) | |
download | tcl-eee8927e2b314d25d605dbf6337ba7d5ed5a8a46.zip tcl-eee8927e2b314d25d605dbf6337ba7d5ed5a8a46.tar.gz tcl-eee8927e2b314d25d605dbf6337ba7d5ed5a8a46.tar.bz2 |
cleanup Tcl_Preserve after exit handlers
Diffstat (limited to 'generic/tclEvent.c')
-rw-r--r-- | generic/tclEvent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index 3ecf3f1..fb58f0f 100644 --- a/generic/tclEvent.c +++ b/generic/tclEvent.c @@ -12,7 +12,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.58 2005/06/22 19:47:42 kennykb Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.59 2005/06/24 20:07:21 kennykb Exp $ */ #include "tclInt.h" @@ -962,6 +962,7 @@ Tcl_Finalize() /* * There shouldn't be any malloc'ed memory after this. */ + TclFinalizePreserve(); #if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) TclFinalizeThreadAlloc(); #endif |