From 75989f52c5a91b15f9b16ef7b5be660f858fcbf0 Mon Sep 17 00:00:00 2001 From: "dongsug.song" Date: Thu, 26 Dec 2024 15:06:33 +0900 Subject: [PATCH] [NUI] fix SVACE issue --- src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs b/src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs index 51c30ee02..dbd7a1e08 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs @@ -1502,7 +1502,7 @@ namespace Tizen.NUI.BaseComponents if (weakReferencesOfLottie.TryGetValue(id, out current)) { - if (current.TryGetTarget(out currentView) && (currentView != null) && !currentView.IsDisposedOrQueued) + if (current.TryGetTarget(out currentView) && (currentView != null) && !currentView.IsDisposedOrQueued && current != null) { lock (currentView.InternalPropertyCallbacksLock) { -- 2.34.1