Patch from Joe Marcus Clarke to fix a possible crash on logout. #167935.

2005-02-20  Elijah Newren  <newren@gmail.com>

	Patch from Joe Marcus Clarke to fix a possible crash on logout.
	#167935.  Thanks for fixing my mistakes, Joe!

	* src/display.c: (meta_display_open): initialize
	display->grab_old_window_stacking to NULL.
This commit is contained in:
Elijah Newren 2005-02-20 17:23:20 +00:00 committed by Elijah Newren
parent 50312dd0e8
commit 1f0fd137f5
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2005-02-20 Elijah Newren <newren@gmail.com>
Patch from Joe Marcus Clarke to fix a possible crash on logout.
#167935. Thanks for fixing my mistakes, Joe!
* src/display.c: (meta_display_open): initialize
display->grab_old_window_stacking to NULL.
2005-02-20 Elijah Newren <newren@gmail.com>
Big patch to cover about 6 different issues in order to correct

View File

@ -341,6 +341,7 @@ meta_display_open (const char *name)
display->autoraise_window = NULL;
display->focus_window = NULL;
display->expected_focus_window = NULL;
display->grab_old_window_stacking = NULL;
#ifdef HAVE_XSYNC
display->grab_sync_request_alarm = None;