Fix garbage in string padding.

This commit is contained in:
Andrew Dunai 2018-03-04 19:45:33 +02:00
parent e619727e99
commit 0269e366f1

View file

@ -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;
}
}
}