Merge pull request #4448 from assimp/kimkulling/MDL-fix_stackoverflow-issue4447

Fix stack-overflow in MDLLoader
pull/4451/head
Kim Kulling 2022-03-16 14:14:46 +01:00 committed by GitHub
commit a916a0eda5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -493,7 +493,7 @@ void MDLImporter::ParseSkinLump_3DGS_MDL7(
size_t iLen2 = iLen + 1;
iLen2 = iLen2 > MAXLEN ? MAXLEN : iLen2;
memcpy(szFile.data, (const char *)szCurrent, iLen2);
szFile.length = (ai_uint32)iLen;
szFile.length = static_cast<ai_uint32>(iLen2);
szCurrent += iLen2;