aboutsummaryrefslogtreecommitdiff
path: root/src/zencore
diff options
context:
space:
mode:
authorzousar <[email protected]>2025-04-02 12:16:02 -0600
committerzousar <[email protected]>2025-04-02 12:16:02 -0600
commit75f753cc70d4d87138944aa0b2d0d843d47caf5e (patch)
tree3367173eb17a123889b75d4091168bd3bc985b32 /src/zencore
parentMerge branch 'main' of https://github.ol.epicgames.net/ue-foundation/zen (diff)
parent5.6.2-pre0 (diff)
downloadzen-75f753cc70d4d87138944aa0b2d0d843d47caf5e.tar.xz
zen-75f753cc70d4d87138944aa0b2d0d843d47caf5e.zip
Merge branch 'main' of https://github.ol.epicgames.net/ue-foundation/zen
Diffstat (limited to 'src/zencore')
-rw-r--r--src/zencore/compactbinaryjson.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zencore/compactbinaryjson.cpp b/src/zencore/compactbinaryjson.cpp
index d8c8a8584..68ed09549 100644
--- a/src/zencore/compactbinaryjson.cpp
+++ b/src/zencore/compactbinaryjson.cpp
@@ -293,6 +293,7 @@ private:
const uint32_t EncodedSize = Base64::GetEncodedDataSize(uint32_t(Value.GetSize()));
const size_t EncodedIndex = Builder.AddUninitialized(size_t(EncodedSize));
Base64::Encode(static_cast<const uint8_t*>(Value.GetData()), uint32_t(Value.GetSize()), Builder.Data() + EncodedIndex);
+ Builder << '"';
}
private: