atspi: Delete assert when parent was nullptr 92/259792/1
authorWoochanlee <wc0917.lee@samsung.com>
Mon, 14 Jun 2021 09:20:02 +0000 (18:20 +0900)
committerWoochanlee <wc0917.lee@samsung.com>
Mon, 14 Jun 2021 09:20:02 +0000 (18:20 +0900)
when aurum bootstrap call command from host, this assert genereated.
it works well without assert exception here.

Change-Id: I9e0ffeb61167a2e36b8f40e383e011b8571808ff

dali/internal/accessibility/bridge/bridge-accessible.cpp

index eed9437..ed4a81c 100644 (file)
@@ -691,7 +691,7 @@ Accessible* BridgeAccessible::GetParent()
   // if you want more, then you need to change setApplicationRoot to
   // add/remove ApplicationRoot and make roots a vector.
   auto p = FindSelf()->GetParent();
-  assert(p);
+
   return p;
 }
 DBus::ValueOrError<std::vector<Accessible*>> BridgeAccessible::GetChildren()