diff options
author | Andrew Dunai <a@dun.ai> | 2018-03-04 19:45:33 +0200 |
---|---|---|
committer | Andrew Dunai <a@dun.ai> | 2018-03-04 19:45:33 +0200 |
commit | 0269e366f13104ccd4e2e50475460b032006730a (patch) | |
tree | f4eb9659dc9a6f52569b4dca481f6ac8a09a9f97 | |
parent | e619727e999ecd8e6883330f2c6950cd0624de99 (diff) |
Fix garbage in string padding.
-rw-r--r-- | core/io/marshalls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/marshalls.cpp b/core/io/marshalls.cpp index 9e21287780..2ebe8d6df7 100644 --- a/core/io/marshalls.cpp +++ b/core/io/marshalls.cpp @@ -813,7 +813,7 @@ static void _encode_string(const String &p_string, uint8_t *&buf, int &r_len) { while (r_len % 4) { r_len++; //pad if (buf) { - buf++; + *(buf++) = 0; } } } |