Revert "[Tizen] Prevent accessing invalid index"
authorhuiyu.eun <huiyu.eun@samsung.com>
Mon, 29 Nov 2021 07:51:28 +0000 (16:51 +0900)
committerhuiyu.eun <huiyu.eun@samsung.com>
Mon, 29 Nov 2021 07:51:28 +0000 (16:51 +0900)
This reverts commit 2379dac2638ab20c3cbbbf643faa0af33c79d466.

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;