Skip to content

Commit

Permalink
Eliminate undefined behavior of bit shifting signed int.
Browse files Browse the repository at this point in the history
  • Loading branch information
chadf committed Jul 9, 2023
1 parent b8f998f commit 47dc559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libi2pd/Base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ namespace data
size_t ByteStreamToBase32 (const uint8_t * inBuf, size_t len, char * outBuf, size_t outLen)
{
size_t ret = 0, pos = 1;
int bits = 8, tmp = inBuf[0];
unsigned int bits = 8, tmp = inBuf[0];
while (ret < outLen && (bits > 0 || pos < len))
{
if (bits < 5)
Expand Down

0 comments on commit 47dc559

Please sign in to comment.