hle: nvflinger: parcel: Reserve token size.

This commit is contained in:
bunnei 2022-03-19 22:07:52 -07:00
parent ddd5a2b1c6
commit 7db60fe7da

View file

@ -89,7 +89,8 @@ public:
[[maybe_unused]] const u32 unknown = Read<u32>();
const u32 length = Read<u32>();
std::u16string token{};
std::u16string token;
token.reserve(length + 1);
for (u32 ch = 0; ch < length + 1; ++ch) {
token.push_back(ReadUnaligned<u16>());