From: Junseok Kim Date: Tue, 2 Apr 2024 11:25:04 +0000 (+0900) Subject: e_client: Add null check of ec X-Git-Tag: accepted/tizen/7.0/unified/20240403.012847^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e3049cdec37c1aa9a42f03e2cea649813c06c45d;p=platform%2Fupstream%2Fenlightenment.git e_client: Add null check of ec Change-Id: I4c3113f996c6d5d362037b1a1730c9bf85a61dcf --- diff --git a/src/bin/e_client.c b/src/bin/e_client.c index 6a01de9406..f2e61e0323 100644 --- a/src/bin/e_client.c +++ b/src/bin/e_client.c @@ -5842,7 +5842,7 @@ e_client_focus_stack_append_current_focused(E_Client *ec) Eina_List *l = NULL; E_Client *temp_ec = NULL; - if (!ec) CRI("ACK"); + EINA_SAFETY_ON_NULL_RETURN(ec); if (focus_track_frozen > 0) return; focus_stack = eina_list_remove(focus_stack, ec);