mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
Eliminate additional undefined behavior of bit shifting signed int.
This commit is contained in:
parent
72919ec076
commit
662a59d0fd
@ -272,7 +272,7 @@ namespace data
|
||||
|
||||
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;
|
||||
for (size_t i = 0; i < len; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user