From 680f8a169dde620ec601967764d465bd290dd917 Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Fri, 27 Oct 2017 15:32:19 -0400 Subject: [PATCH] xwm: remove duplicate calls in net wm state read --- xwayland/xwm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/xwayland/xwm.c b/xwayland/xwm.c index 9ddf59df..e3d7867d 100644 --- a/xwayland/xwm.c +++ b/xwayland/xwm.c @@ -460,7 +460,6 @@ static void read_surface_net_wm_state(struct wlr_xwm *xwm, struct wlr_xwayland_surface *xsurface, xcb_get_property_reply_t *reply) { xsurface->fullscreen = 0; xcb_atom_t *atom = xcb_get_property_value(reply); - atom = xcb_get_property_value(reply); for (uint32_t i = 0; i < reply->value_len; i++) { if (atom[i] == xwm->atoms[_NET_WM_STATE_FULLSCREEN]) xsurface->fullscreen = true;