From 21b974e4ba53062d6e65d7ee912fb97aa14ab330 Mon Sep 17 00:00:00 2001 From: davygrvy Date: Tue, 20 Apr 2004 02:10:38 +0000 Subject: Added an exit handler in tclWinInit() so tclWinTCharEncoding could be freed for Tcl_Finalize. --- win/tclWin32Dll.c | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/win/tclWin32Dll.c b/win/tclWin32Dll.c index 4a5aefd..4059373 100644 --- a/win/tclWin32Dll.c +++ b/win/tclWin32Dll.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWin32Dll.c,v 1.32 2004/01/21 19:59:34 vincentdarley Exp $ + * RCS: @(#) $Id: tclWin32Dll.c,v 1.33 2004/04/20 02:10:38 davygrvy Exp $ */ #include "tclWinInt.h" @@ -156,6 +156,7 @@ static TclWinProcs unicodeProcs = { TclWinProcs *tclWinProcs; static Tcl_Encoding tclWinTCharEncoding; +Tcl_ExitProc TclWinUninit; /* * The following declaration is for the VC++ DLL entry point. @@ -397,6 +398,34 @@ TclWinInit(hInst) } tclWinProcs = &asciiProcs; + Tcl_CreateExitHandler(TclWinUninit, NULL); +} + +/* + *---------------------------------------------------------------------- + * + * TclWinUninit -- + * + * Exit handler callback to remove private components used in this + * file. + * + * Results: + * None. + * + * Side effects: + * Tcl_WinTCharToUtf and Tcl_WinUtfToTChar will not work during + * the latter half of Tcl_Finalize. + * + *---------------------------------------------------------------------- + */ + +void +TclWinUninit (ClientData clientData) +{ + if (tclWinTCharEncoding) { + Tcl_FreeEncoding(tclWinTCharEncoding); + tclWinTCharEncoding = NULL; + } } /* -- cgit v0.12