This commit is contained in:
Chuck Walbourn 2024-09-17 10:37:26 -07:00 коммит произвёл GitHub
Родитель 497378076b
Коммит fc904593c1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -299,7 +299,7 @@ std::unique_ptr<Model> DirectX::Model::CreateFromCMO(
if (dataSize < usedSize)
throw std::runtime_error("End of file");
auto meshName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize));
auto meshName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize)); // [CodeQL.SM02986]: The cast here is intentional.
usedSize += sizeof(wchar_t)*(*nName);
if (dataSize < usedSize)
@ -328,7 +328,7 @@ std::unique_ptr<Model> DirectX::Model::CreateFromCMO(
if (dataSize < usedSize)
throw std::runtime_error("End of file");
auto matName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize));
auto matName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize)); // [CodeQL.SM02986]: The cast here is intentional.
usedSize += sizeof(wchar_t)*(*nName);
if (dataSize < usedSize)
@ -350,7 +350,7 @@ std::unique_ptr<Model> DirectX::Model::CreateFromCMO(
if (dataSize < usedSize)
throw std::runtime_error("End of file");
auto psName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize));
auto psName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize)); // [CodeQL.SM02986]: The cast here is intentional.
usedSize += sizeof(wchar_t)*(*nName);
if (dataSize < usedSize)
@ -365,7 +365,7 @@ std::unique_ptr<Model> DirectX::Model::CreateFromCMO(
if (dataSize < usedSize)
throw std::runtime_error("End of file");
auto txtName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize));
auto txtName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize)); // [CodeQL.SM02986]: The cast here is intentional.
usedSize += sizeof(wchar_t)*(*nName);
if (dataSize < usedSize)
@ -598,7 +598,7 @@ std::unique_ptr<Model> DirectX::Model::CreateFromCMO(
if (dataSize < usedSize)
throw std::runtime_error("End of file");
auto boneName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize));
auto boneName = reinterpret_cast<const wchar_t*>(static_cast<const void*>(meshData + usedSize)); // [CodeQL.SM02986]: The cast here is intentional.
usedSize += sizeof(wchar_t) * (*nName);
if (dataSize < usedSize)