mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 01:10:51 +00:00
- added missing terminator to Base64 encoder.
This commit is contained in:
parent
1b46a6fd9a
commit
bf761af9aa
1 changed files with 1 additions and 0 deletions
1
source/thirdparty/src/base64.cpp
vendored
1
source/thirdparty/src/base64.cpp
vendored
|
@ -89,6 +89,7 @@ TArray<uint8_t> base64_encode(unsigned char const* bytes_to_encode, size_t in_le
|
|||
while((i++ < 3))
|
||||
reta.Push('=');
|
||||
|
||||
reta.Push(0);
|
||||
}
|
||||
|
||||
return reta;
|
||||
|
|
Loading…
Reference in a new issue