From 0bd020f5ab0e75faeee002b55dd4f4291a05a079 Mon Sep 17 00:00:00 2001 From: Junseok Kim Date: Tue, 2 Apr 2024 10:38:25 +0900 Subject: [PATCH] e_mod_rotation_wl: fix infinite loop Change-Id: Icb3acf00a3f488be923ec0e8201e8345a102708b --- src/rotation/e_mod_rotation_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rotation/e_mod_rotation_wl.c b/src/rotation/e_mod_rotation_wl.c index 52e43ec..da2c4c0 100644 --- a/src/rotation/e_mod_rotation_wl.c +++ b/src/rotation/e_mod_rotation_wl.c @@ -1768,7 +1768,7 @@ e_client_rotation_find_below(E_Client *ec) for (below_ec = e_client_below_get(ec); below_ec; - below_ec = e_client_below_get(ec)) + below_ec = e_client_below_get(below_ec)) { if ((below_ec->comp_data && below_ec->comp_data->mapped) && (!e_client_util_ignored_get(below_ec)) && -- 2.7.4