xwayland: wm: fix an invalid read
This `for` statement needs corresponding braces. Signed-off-by: Ryo Munakata <ryomnktml@gmail.com> Reviewed-by: Giulio Camuffo <giuliocamuffo@gmail.com> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This commit is contained in:
parent
ae0c6e35b0
commit
f3744f5e86
@ -471,13 +471,14 @@ weston_wm_window_read_properties(struct weston_wm_window *window)
|
||||
case TYPE_NET_WM_STATE:
|
||||
window->fullscreen = 0;
|
||||
atom = xcb_get_property_value(reply);
|
||||
for (i = 0; i < reply->value_len; i++)
|
||||
for (i = 0; i < reply->value_len; i++) {
|
||||
if (atom[i] == wm->atom.net_wm_state_fullscreen)
|
||||
window->fullscreen = 1;
|
||||
if (atom[i] == wm->atom.net_wm_state_maximized_vert)
|
||||
window->maximized_vert = 1;
|
||||
if (atom[i] == wm->atom.net_wm_state_maximized_horz)
|
||||
window->maximized_horz = 1;
|
||||
}
|
||||
break;
|
||||
case TYPE_MOTIF_WM_HINTS:
|
||||
memcpy(&window->motif_hints,
|
||||
|
Loading…
Reference in New Issue
Block a user