You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto meshName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); //[CodeQL.SM02986]: The cast here is intentional.
153
+
auto meshName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); // CodeQL [SM02986] The cast here is intentional to interpret the string in the buffer.
auto matName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); //[CodeQL.SM02986]: The cast here is intentional.
185
+
auto matName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); // CodeQL [SM02986] The cast here is intentional to interpret the string in the buffer.
auto psName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); //[CodeQL.SM02986]: The cast here is intentional.
207
+
auto psName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); // CodeQL [SM02986] The cast here is intentional to interpret the string in the buffer.
auto txtName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); //[CodeQL.SM02986]: The cast here is intentional.
222
+
auto txtName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); // CodeQL [SM02986] The cast here is intentional to interpret the string in the buffer.
auto boneName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); //[CodeQL.SM02986]: The cast here is intentional.
461
+
auto boneName = reinterpret_cast<constwchar_t*>(static_cast<constvoid*>(meshData + usedSize)); // CodeQL [SM02986] The cast here is intentional to interpret the string in the buffer.
0 commit comments