From c68e81ce59e6030a4f01da0095c8ba6e8385e91f Mon Sep 17 00:00:00 2001 From: Nicky Date: Wed, 2 Oct 2024 13:55:27 +0200 Subject: Add another static_cast to make the implicit conversion from size_t > long explicit. --- indra/llrender/llfontfreetype.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'indra') diff --git a/indra/llrender/llfontfreetype.cpp b/indra/llrender/llfontfreetype.cpp index eee4ea988b..019fb07152 100644 --- a/indra/llrender/llfontfreetype.cpp +++ b/indra/llrender/llfontfreetype.cpp @@ -844,7 +844,8 @@ U8 const* LLFontManager::loadFont( std::string const &aFilename, long &a_Size) if( itr != m_LoadedFonts.end() ) { ++itr->second->mRefs; - a_Size = itr->second->mSize; + // A possible overflow cannot happen here, as it is asserted that the size is less than std::numeric_limits::max() a few lines below. + a_Size = static_cast(itr->second->mSize); return reinterpret_cast(itr->second->mAddress.c_str()); } -- cgit v1.2.3