summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2016-05-10 11:34:48 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2016-05-10 11:34:48 -0400
commitac86429a2c878d688ff280720126e2c38baa9d3f (patch)
tree0d3246cdbf4dba6cdebf3ee4f1192872233ff8d3
parent240561fda184ce4732abe9859924ad6fc994fc2b (diff)
downloadenlightenment-ac86429a2c878d688ff280720126e2c38baa9d3f.tar.gz
manage pending state list more effectively in wl shell
fix T3433
-rw-r--r--src/modules/wl_desktop_shell/e_mod_main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/wl_desktop_shell/e_mod_main.c b/src/modules/wl_desktop_shell/e_mod_main.c
index 076f652256..f599acaaaa 100644
--- a/src/modules/wl_desktop_shell/e_mod_main.c
+++ b/src/modules/wl_desktop_shell/e_mod_main.c
@@ -918,6 +918,7 @@ _e_xdg_shell_surface_cb_ack_configure(struct wl_client *client EINA_UNUSED, stru
E_Client *ec;
Pending_State *ps;
E_Shell_Data *shd;
+ Eina_List *l, *ll;
ec = wl_resource_get_user_data(resource);
if (!ec)
@@ -928,7 +929,7 @@ _e_xdg_shell_surface_cb_ack_configure(struct wl_client *client EINA_UNUSED, stru
}
if (e_object_is_del(E_OBJECT(ec))) return;
shd = ec->comp_data->shell.data;
- EINA_LIST_FREE(shd->pending, ps)
+ EINA_LIST_FOREACH_SAFE(shd->pending, l, ll, ps)
{
if (ps->serial > serial) break;
if (ps->state & STATE_FULLSCREEN)
@@ -951,6 +952,7 @@ _e_xdg_shell_surface_cb_ack_configure(struct wl_client *client EINA_UNUSED, stru
ec->comp_data->shell.set.unmaximize = 1;
ec->comp_data->shell.set.maximize = 0;
}
+ shd->pending = eina_list_remove_list(shd->pending, l);
free(ps);
}
}