diff options
author | vincentdarley <vincentdarley> | 2002-05-13 13:19:59 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-05-13 13:19:59 (GMT) |
commit | 18b4a36a1a37a62808c9caa0b3d6eb1882c3ed65 (patch) | |
tree | 54e38ca856778879fde314424eee2707f709d2f0 /generic/tclEvent.c | |
parent | ffae2997ee93cabad7b2024b2a18767ade8b4790 (diff) | |
download | tcl-18b4a36a1a37a62808c9caa0b3d6eb1882c3ed65.zip tcl-18b4a36a1a37a62808c9caa0b3d6eb1882c3ed65.tar.gz tcl-18b4a36a1a37a62808c9caa0b3d6eb1882c3ed65.tar.bz2 |
memory cleanup
Diffstat (limited to 'generic/tclEvent.c')
-rw-r--r-- | generic/tclEvent.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index 4e24e72..6d16bf7 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.20 2002/03/20 22:47:36 dgp Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.21 2002/05/13 13:20:00 vincentdarley Exp $ */ #include "tclInt.h" @@ -843,6 +843,12 @@ Tcl_Finalize() */ TclFinalizeLoad(); + + /** + * Finalizing the filesystem must come after anything which + * might conceivably interact with the 'Tcl_FS' API. + */ + TclFinalizeFilesystem(); /* * There shouldn't be any malloc'ed memory after this. |