Clear coverity finding CONSTANT_EXPRESSION_RESULT (CID 147833)

pull/242/merge
Jeffrey Walton 2017-05-20 01:35:39 -04:00
parent e0d856d0ca
commit 555617d456
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 1 additions and 1 deletions

View File

@ -3404,7 +3404,7 @@ void Integer::Decode(BufferedTransformation &bt, size_t inputLen, Signedness s)
reg.CleanNew(RoundupSize(BytesToWords(inputLen)));
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;
}