Fixed a prevent issue
authorBongjoo Seo <bongjoo.seo@samsung.com>
Thu, 4 Apr 2013 05:34:29 +0000 (14:34 +0900)
committerBongjoo Seo <bongjoo.seo@samsung.com>
Thu, 4 Apr 2013 05:39:32 +0000 (14:39 +0900)
Change-Id: Ifdd36f2103f1d4b4c0f5c8b211cbc42f92a0f97b
Signed-off-by: Bongjoo Seo <bongjoo.seo@samsung.com>
src/ui/animations/FUiAnim_AnimationManager.cpp

index a24c6f4..d8a0153 100644 (file)
@@ -815,12 +815,13 @@ _AnimationManager::ProcessCommittedTransaction(void)
        for(int index = 0; index < committedCount; index++)
        {
                pNode = __committedList.GetNodeAt(index);
+               if (pNode)
+               {
+                       pNode->DrawTargets();
+                       pNode->SetChildrenBaseTime(_AnimationTime::GetTime());
 
-               pNode->DrawTargets();
-               pNode->SetChildrenBaseTime(_AnimationTime::GetTime());
-
-               __pRootTransaction->AddChild(*pNode);
-
+                       __pRootTransaction->AddChild(*pNode);
+               }
                __committedList.SetAt(null, index);
        }