From: azijurr Date: Wed, 16 Apr 2025 05:40:05 +0000 (+0600) Subject: Fix SVACE critical issue X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen;p=profile%2Fiot%2Fapps%2Fdotnet%2Fshare-panel.git Fix SVACE critical issue [Issue] WGID : 283766 [Cause & Measure] Value of appControl.ExtraData could be null. So, applied null checking before dereference. Change-Id: I04b2aef81ac4e2920483039c0ac1d8afbc9f7bad Signed-off-by: azijurr --- diff --git a/SharePanel/SharePanel/Core/AppLauncher.cs b/SharePanel/SharePanel/Core/AppLauncher.cs index aaa307b..bf2ec8b 100644 --- a/SharePanel/SharePanel/Core/AppLauncher.cs +++ b/SharePanel/SharePanel/Core/AppLauncher.cs @@ -41,7 +41,7 @@ namespace SharePanel.Core { appControl.Uri = files[0]; } - else + else if (appControl.ExtraData != null) { appControl.ExtraData.Add(key, files); }