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

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

@ -375,7 +375,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)
@ -404,7 +404,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)
@ -426,7 +426,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)
@ -441,7 +441,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)
@ -665,7 +665,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)