mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
Fix some uninitialized variable errors reported by valgrind (see #153338)
2004-09-22 Elijah Newren <newren@math.utah.edu> Fix some uninitialized variable errors reported by valgrind (see #153338) * src/display.c (meta_display_open): initialize display->grab_resize_timeout_id, and display->grab_have_keyboard * src/ui.c (meta_ui_create_frame_window): initialize attrs.width and attrs.height
This commit is contained in:
parent
aa63e0884d
commit
3b9ec3ce50
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
2004-09-22 Elijah Newren <newren@math.utah.edu>
|
||||
|
||||
Fix some uninitialized variable errors reported by valgrind (see
|
||||
#153338)
|
||||
|
||||
* src/display.c (meta_display_open): initialize
|
||||
display->grab_resize_timeout_id, and display->grab_have_keyboard
|
||||
|
||||
* src/ui.c (meta_ui_create_frame_window): initialize attrs.width
|
||||
and attrs.height
|
||||
|
||||
2004-09-17 Elijah Newren <newren@math.utah.edu>
|
||||
|
||||
* src/workspace.c (meta_workspace_focus_mru_window): Don't focus a
|
||||
|
@ -502,6 +502,9 @@ meta_display_open (const char *name)
|
||||
display->current_time = CurrentTime;
|
||||
display->sentinel_counter = 0;
|
||||
|
||||
display->grab_resize_timeout_id = 0;
|
||||
display->grab_have_keyboard = FALSE;
|
||||
|
||||
display->grab_op = META_GRAB_OP_NONE;
|
||||
display->grab_wireframe_active = FALSE;
|
||||
display->grab_window = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user