Fix Svace error in actor-parent-impl.cpp 42/249542/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Mon, 14 Dec 2020 14:04:28 +0000 (14:04 +0000)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Mon, 14 Dec 2020 14:04:28 +0000 (14:04 +0000)
Change-Id: I085d990f1ccbc5a503c1ac84943a0a44bf093d46

dali/internal/event/actors/actor-parent-impl.cpp

index 947f572..bd50549 100644 (file)
@@ -272,7 +272,7 @@ uint32_t ActorParentImpl::GetSiblingOrderOfChild(const Actor& child) const
 void ActorParentImpl::RaiseChild(Actor& child)
 {
   bool changed = false;
-  if(mChildren && mChildren && mChildren->back() != &child) // If not already at end
+  if(mChildren && mChildren->back() != &child) // If not already at end
   {
     for(std::size_t i = 0; i < mChildren->size(); ++i)
     {