Bump pre-commit hooks

This commit is contained in:
Benjamin Bannier 2023-10-10 21:22:12 +02:00
parent f5a76c1aed
commit 26d04fd9fc
13 changed files with 22 additions and 19 deletions

View file

@ -154,7 +154,7 @@ int Base64Converter::Decode(int len, const char* data, int* pblen, char** pbuf)
*buf++ = char((bit32 >> 8) & 0xff);
if ( --num_octets >= 0 )
*buf++ = char((bit32)&0xff);
*buf++ = char((bit32) & 0xff);
if ( base64_padding > 0 )
base64_after_padding = 1;