From 3f7bc4e6d64574cc2bfa1f202e8ee0d748f72913 Mon Sep 17 00:00:00 2001 From: Heeyong Song Date: Wed, 17 Nov 2021 18:21:52 +0900 Subject: [PATCH] [Tizen] Add log to prevent invalid access to array Change-Id: I7fdcf70f8fd82b9b325f5a1f79b223d507521d04 --- dali/internal/graphics/gles-impl/gles-context.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dali/internal/graphics/gles-impl/gles-context.cpp b/dali/internal/graphics/gles-impl/gles-context.cpp index de5e058..9c21096 100644 --- a/dali/internal/graphics/gles-impl/gles-context.cpp +++ b/dali/internal/graphics/gles-impl/gles-context.cpp @@ -864,6 +864,12 @@ void Context::ActiveTexture(uint32_t textureBindingIndex) void Context::BindTexture(GLenum target, BoundTextureType textureTypeId, uint32_t textureId) { uint32_t typeId = static_cast(textureTypeId); + if(mImpl->mGlStateCache.mActiveTextureUnit >= MAX_TEXTURE_UNITS || typeId >= MAX_TEXTURE_TARGET) + { + DALI_LOG_ERROR("Invalid index (%d, %d)\n", mImpl->mGlStateCache.mActiveTextureUnit, typeId); + std::abort(); + } + if(mImpl->mGlStateCache.mBoundTextureId[mImpl->mGlStateCache.mActiveTextureUnit][typeId] != textureId) { mImpl->mGlStateCache.mBoundTextureId[mImpl->mGlStateCache.mActiveTextureUnit][typeId] = textureId; -- 2.7.4