summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar bunnei2022-03-19 22:07:52 -0700
committerGravatar bunnei2022-03-24 18:13:33 -0700
commit7db60fe7da370c0d37182a27ec8af928cd066b40 (patch)
tree8749f9e65c3f2562682352d6241dd2a458b10006 /src/core
parenthle: nvflinger: buffer_queue_core: StillTracking: Take const reference. (diff)
downloadyuzu-7db60fe7da370c0d37182a27ec8af928cd066b40.tar.gz
yuzu-7db60fe7da370c0d37182a27ec8af928cd066b40.tar.xz
yuzu-7db60fe7da370c0d37182a27ec8af928cd066b40.zip
hle: nvflinger: parcel: Reserve token size.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/nvflinger/parcel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/parcel.h b/src/core/hle/service/nvflinger/parcel.h
index b41c1732e..aa36e6479 100644
--- a/src/core/hle/service/nvflinger/parcel.h
+++ b/src/core/hle/service/nvflinger/parcel.h
@@ -89,7 +89,8 @@ public:
89 [[maybe_unused]] const u32 unknown = Read<u32>(); 89 [[maybe_unused]] const u32 unknown = Read<u32>();
90 const u32 length = Read<u32>(); 90 const u32 length = Read<u32>();
91 91
92 std::u16string token{}; 92 std::u16string token;
93 token.reserve(length + 1);
93 94
94 for (u32 ch = 0; ch < length + 1; ++ch) { 95 for (u32 ch = 0; ch < length + 1; ++ch) {
95 token.push_back(ReadUnaligned<u16>()); 96 token.push_back(ReadUnaligned<u16>());