Eliminate additional undefined behavior of bit shifting signed int.

This commit is contained in:
Chad Fraleigh 2023-08-14 19:21:30 -07:00 committed by R4SAS
parent 72919ec076
commit 662a59d0fd

View file

@ -272,7 +272,7 @@ namespace data
size_t Base32ToByteStream (const char * inBuf, size_t len, uint8_t * outBuf, size_t outLen) size_t Base32ToByteStream (const char * inBuf, size_t len, uint8_t * outBuf, size_t outLen)
{ {
int tmp = 0, bits = 0; unsigned int tmp = 0, bits = 0;
size_t ret = 0; size_t ret = 0;
for (size_t i = 0; i < len; i++) for (size_t i = 0; i < len; i++)
{ {