diff options
author | patthoyts@users.sourceforge.net <patthoyts> | 2009-02-27 23:04:39 (GMT) |
---|---|---|
committer | patthoyts@users.sourceforge.net <patthoyts> | 2009-02-27 23:04:39 (GMT) |
commit | 54c80281a0b9198b80b34857ba375a33213c78a4 (patch) | |
tree | 88705f845ef5d3e16c124088085828b7e9103b68 | |
parent | 185b2a56aeb8ad79f952ae93e0b695e6aecfc471 (diff) | |
download | tk-54c80281a0b9198b80b34857ba375a33213c78a4.zip tk-54c80281a0b9198b80b34857ba375a33213c78a4.tar.gz tk-54c80281a0b9198b80b34857ba375a33213c78a4.tar.bz2 |
[Bug 2645457] check for dead windows after calling Tk_MakeWindowExist to avoid a crash when mapping dead windows.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tkWindow.c | 9 |
2 files changed, 13 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2009-02-27 Pat Thoyts <patthoyts@users.sourceforge.net> + + * generic/tkWindow.c: [Bug 2645457] check for dead windows after + calling Tk_MakeWindowExist to avoid a crash when mapping dead windows. + 2009-02-23 Pat Thoyts <patthoyts@users.sourceforge.net> * win/rc/*.cur: [Patch 2513104] fix cursor hotspots (cjmcdonald) diff --git a/generic/tkWindow.c b/generic/tkWindow.c index 37b4a43..8c2d435 100644 --- a/generic/tkWindow.c +++ b/generic/tkWindow.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: tkWindow.c,v 1.102 2008/12/28 13:08:39 dkf Exp $ + * RCS: @(#) $Id: tkWindow.c,v 1.103 2009/02/27 23:04:39 patthoyts Exp $ */ #include "tkInt.h" @@ -1644,6 +1644,13 @@ Tk_MapWindow( 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 windows. |