diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2009-02-28 09:42:26 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2009-02-28 09:42:26 (GMT) |
commit | 038aae6c4ff3e68c3afd0bf80311e331febedad3 (patch) | |
tree | e2187e768249dd4b232cb74ea634759d810dfb79 /generic/tkWindow.c | |
parent | 1f997eede68e3ffe3fe7ca91b7c516ac4f06b3ea (diff) | |
download | tk-038aae6c4ff3e68c3afd0bf80311e331febedad3.zip tk-038aae6c4ff3e68c3afd0bf80311e331febedad3.tar.gz tk-038aae6c4ff3e68c3afd0bf80311e331febedad3.tar.bz2 |
[Bug 2645457] check for dead windows after calling Tk_MakeWindowExist to avoid a crash when mapping dead windows.
Diffstat (limited to 'generic/tkWindow.c')
-rw-r--r-- | generic/tkWindow.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c index 4be22b9..69f4db6 100644 --- a/generic/tkWindow.c +++ b/generic/tkWindow.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: tkWindow.c,v 1.56.2.15 2008/04/07 23:12:10 hobbs Exp $ + * RCS: @(#) $Id: tkWindow.c,v 1.56.2.16 2009/02/28 09:42:26 patthoyts Exp $ */ #include "tkPort.h" @@ -1653,6 +1653,13 @@ Tk_MapWindow(tkwin) if (winPtr->window == None) { Tk_MakeWindowExist(tkwin); } + /* + * [Bug 2645457]: the previous call permits events to be processed and can + * lead to the destruction of the window under some conditions. + */ + if (winPtr->flags & TK_ALREADY_DEAD) { + return; + } if (winPtr->flags & TK_WIN_MANAGED) { /* * Lots of special processing has to be done for top-level |