Suppress warning from CodeQL (#255)
This commit is contained in:
Родитель
18d2446163
Коммит
83ef46fb9a
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче