Revert "[Tizen] Prevent accessing invalid index"
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Tue, 14 Dec 2021 05:26:53 +0000 (14:26 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Tue, 14 Dec 2021 05:26:53 +0000 (14:26 +0900)
This reverts commit fc942a3058a5059c0c37659efeaa9912b2700b66.

dali/public-api/common/dali-vector.h

index 471e8b4..80c6364 100644 (file)
@@ -555,11 +555,7 @@ public: // API
   const ItemType& operator[](SizeType index) const
   {
     DALI_ASSERT_VECTOR(VectorBase::mData && "Vector is empty");
-    if(index >= VectorBase::Count())
-    {
-      // Prevent accessing invalid index
-      index = 0;
-    }
+    DALI_ASSERT_VECTOR(index < VectorBase::Count() && "Index out of bounds");
     ItemType* address = reinterpret_cast<ItemType*>(VectorBase::mData);
     address += index;
     return *address;