mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- properly terminate base64 data.
This commit is contained in:
parent
a6f62773cb
commit
bdfe40af7c
1 changed files with 1 additions and 1 deletions
2
source/common/thirdparty/base64.cpp
vendored
2
source/common/thirdparty/base64.cpp
vendored
|
@ -89,8 +89,8 @@ TArray<uint8_t> 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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue