From 2dcaa941b4933c0fd8476918e8370632d6a3303c Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Mon, 24 Jan 2005 17:39:26 +0000 Subject: [PATCH] don't forget to initialize display->grab_old_window_stacking. Thanks to 2005-01-24 Elijah Newren * src/display.c: (meta_display_begin_grab_op): don't forget to initialize display->grab_old_window_stacking. Thanks to Sebastien Bacher and the bleeding edge Ubuntu users for catching the occasional crash this could cause so quickly, and for verifying that the patch worked (I couldn't duplicate). Fixes #165093. --- ChangeLog | 8 ++++++++ src/display.c | 1 + 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index a2ed6ebe2..f5e78f501 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2005-01-24 Elijah Newren + + * src/display.c: (meta_display_begin_grab_op): don't forget to + initialize display->grab_old_window_stacking. Thanks to Sebastien + Bacher and the bleeding edge Ubuntu users for catching the + occasional crash this could cause so quickly, and for verifying + that the patch worked (I couldn't duplicate). Fixes #165093. + 2005-01-23 Elijah Newren * configure.in: post-release version bump to 2.9.8 diff --git a/src/display.c b/src/display.c index 26a38f2a8..543073bdb 100644 --- a/src/display.c +++ b/src/display.c @@ -3200,6 +3200,7 @@ meta_display_begin_grab_op (MetaDisplay *display, display->grab_last_moveresize_time.tv_sec = 0; display->grab_last_moveresize_time.tv_usec = 0; display->grab_motion_notify_time = 0; + display->grab_old_window_stacking = NULL; #ifdef HAVE_XSYNC display->grab_sync_request_alarm = None; #endif