Clear coverity finding CONSTANT_EXPRESSION_RESULT (CID 147833)
parent
e0d856d0ca
commit
555617d456
|
|
@ -3404,7 +3404,7 @@ void Integer::Decode(BufferedTransformation &bt, size_t inputLen, Signedness s)
|
||||||
reg.CleanNew(RoundupSize(BytesToWords(inputLen)));
|
reg.CleanNew(RoundupSize(BytesToWords(inputLen)));
|
||||||
for (size_t i=inputLen; i > 0; i--)
|
for (size_t i=inputLen; i > 0; i--)
|
||||||
{
|
{
|
||||||
bt.Get(b);
|
(void)bt.Get(b);
|
||||||
reg[(i-1)/WORD_SIZE] |= word(b) << ((i-1)%WORD_SIZE)*8;
|
reg[(i-1)/WORD_SIZE] |= word(b) << ((i-1)%WORD_SIZE)*8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue