diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-01-02 10:43:25 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-01-02 10:43:25 (GMT) |
commit | a8f810f189c1948ce32cf32178f71013a85762c2 (patch) | |
tree | 53a45c4d70540a15b2d1bb2508e567ad721e65b6 /win | |
parent | 1e85ca777ce26da8f7247f965272c9b9f670049c (diff) | |
download | tk-a8f810f189c1948ce32cf32178f71013a85762c2.zip tk-a8f810f189c1948ce32cf32178f71013a85762c2.tar.gz tk-a8f810f189c1948ce32cf32178f71013a85762c2.tar.bz2 |
Fix [Bug 1373712] and [Bug 1924761].
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinX.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/tkWinX.c b/win/tkWinX.c index e5e9e7b..e603e4a 100644 --- a/win/tkWinX.c +++ b/win/tkWinX.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinX.c,v 1.57 2007/12/13 15:28:56 dgp Exp $ + * RCS: @(#) $Id: tkWinX.c,v 1.57.2.1 2010/01/02 10:43:26 dkf Exp $ */ /* @@ -1010,6 +1010,7 @@ GenerateXEvent( return; } + memset(&event, 0, sizeof(XEvent)); event.xany.serial = winPtr->display->request++; event.xany.send_event = False; event.xany.display = winPtr->display; |