From f3ae1a25e249ea78ccb75c3125681cc453c92f7f Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Fri, 21 Jul 2023 19:38:19 +0300 Subject: [PATCH] layout: Check against app_id being valid All app_ids are not valid for xwayland type of surfaces to need to check against it. Bug-AGL: SPEC-4847 Signed-off-by: Marius Vlad Change-Id: I84dc9b493648f4fe48b1c23c8ead0283505acce0 --- src/layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout.c b/src/layout.c index 5576094..c11dacb 100644 --- a/src/layout.c +++ b/src/layout.c @@ -325,7 +325,7 @@ ivi_layout_activate_complete(struct ivi_output *output, * we're trying to complete activation with means we're * operating on the same app_id so do update previous_active as * it will overwrite it with the same value */ - if (!strcmp(c_app_id, app_id)) { + if (app_id && !strcmp(c_app_id, app_id)) { update_previous = false; } } -- 2.16.6