Revert "[Tizen] Prevent accessing invalid index"
authorHeeyong Song <heeyong.song@samsung.com>
Wed, 12 Jan 2022 04:44:39 +0000 (13:44 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Wed, 12 Jan 2022 04:44:47 +0000 (13:44 +0900)
This reverts commit d805ad413cd1a3245287d82d961455999b09374d.

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;