mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-25 01:41:43 +00:00
Cleanups and commenting.
Change-Id: I491a68af8614198af450942cd378c9486f27d338
This commit is contained in:
@@ -118,7 +118,7 @@ std::size_t Base64Decode(char *bufplain, const char *bufcoded) {
|
||||
nprbytes -= 4;
|
||||
}
|
||||
|
||||
// Note: (nprbytes == 1) would be an error, so just ingore that case
|
||||
// Note: (nprbytes == 1) would be an error, so just ignore that case
|
||||
if (nprbytes > 1) {
|
||||
*(bufout++) = (unsigned char)(pr2six[*bufin] << 2 | pr2six[bufin[1]] >> 4);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user