Skip to content

Commit

Permalink
Merge pull request mate-desktop#198 from sgerd/bugfix
Browse files Browse the repository at this point in the history
fix uninitialized data field for sending _NET_WM_SYNC_REQUEST event
  • Loading branch information
flexiondotorg committed Jun 9, 2015
2 parents 0235124 + a2612db commit 0ed6e1d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/window.c
Original file line number Diff line number Diff line change
Expand Up @@ -3333,6 +3333,7 @@ send_sync_request (MetaWindow *window)
ev.data.l[1] = meta_display_get_current_time (window->display);
ev.data.l[2] = XSyncValueLow32 (value);
ev.data.l[3] = XSyncValueHigh32 (value);
ev.data.l[4] = 0;

/* We don't need to trap errors here as we are already
* inside an error_trap_push()/pop() pair.
Expand Down

0 comments on commit 0ed6e1d

Please sign in to comment.