[NUI] Fix svace issue of dereferencing null handle in SetProperty
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Thu, 9 Sep 2021 02:18:48 +0000 (11:18 +0900)
committerSeoyeon2Kim <34738918+Seoyeon2Kim@users.noreply.github.com>
Mon, 13 Sep 2021 07:33:23 +0000 (16:33 +0900)
src/Tizen.NUI/src/internal/EXaml/Operation/SetProperty.cs

index cf020ff..d741073 100755 (executable)
@@ -49,7 +49,7 @@ namespace Tizen.NUI.EXaml
 
             if (null == property)
             {
-                throw new Exception(String.Format("Can't find property {0} in type {1}", property.Name, instance.GetType().FullName));
+                throw new Exception(String.Format("Can't find property in type {0}", instance.GetType().FullName));
             }
 
             if (null == property.SetMethod)