Commit 8c1c7d19 authored by Thomas Faller's avatar Thomas Faller Committed by Alexandre Julliard

winex11.drv: Fix uninitialized memory.

parent a4d5bf99
...@@ -1024,6 +1024,7 @@ void update_net_wm_states( struct x11drv_win_data *data ) ...@@ -1024,6 +1024,7 @@ void update_net_wm_states( struct x11drv_win_data *data )
xev.xclient.send_event = True; xev.xclient.send_event = True;
xev.xclient.format = 32; xev.xclient.format = 32;
xev.xclient.data.l[3] = 1; xev.xclient.data.l[3] = 1;
xev.xclient.data.l[4] = 0;
for (i = 0; i < NB_NET_WM_STATES; i++) for (i = 0; i < NB_NET_WM_STATES; i++)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment