From bdfe40af7c955c64813cfe15223ebced63a0c2eb Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 13 May 2021 13:22:01 +0200 Subject: [PATCH] - properly terminate base64 data. --- source/common/thirdparty/base64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/thirdparty/base64.cpp b/source/common/thirdparty/base64.cpp index e7099711a..fcd0ae414 100644 --- a/source/common/thirdparty/base64.cpp +++ b/source/common/thirdparty/base64.cpp @@ -89,8 +89,8 @@ TArray base64_encode(unsigned char const* bytes_to_encode, size_t in_le while((i++ < 3)) reta.Push('='); - reta.Push(0); } + reta.Push(0); return reta;