From bf761af9aa8b4f251c50feb11e4570b78a75ec80 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 7 Sep 2020 23:32:58 +0200 Subject: [PATCH] - added missing terminator to Base64 encoder. --- source/thirdparty/src/base64.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/thirdparty/src/base64.cpp b/source/thirdparty/src/base64.cpp index 16b2c2e36..e7099711a 100644 --- a/source/thirdparty/src/base64.cpp +++ b/source/thirdparty/src/base64.cpp @@ -89,6 +89,7 @@ TArray base64_encode(unsigned char const* bytes_to_encode, size_t in_le while((i++ < 3)) reta.Push('='); + reta.Push(0); } return reta;