Skip to content

Commit

Permalink
Merge pull request #8333 from SparkiDev/sp_int_rshb_codesonar
Browse files Browse the repository at this point in the history
SP int: stop CodeSonar complaining about i being negatve
  • Loading branch information
dgarske authored Jan 6, 2025
2 parents 71b7d0c + 13ce92c commit 1679218
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wolfcrypt/src/sp_int.c
Original file line number Diff line number Diff line change
Expand Up @@ -8527,13 +8527,13 @@ int sp_rshb(const sp_int* a, int n, sp_int* r)
{
int err = MP_OKAY;
/* Number of digits to shift down. */
sp_size_t i = (sp_size_t)(n >> SP_WORD_SHIFT);
sp_size_t i;

if ((a == NULL) || (n < 0)) {
err = MP_VAL;
}
/* Handle case where shifting out all digits. */
if ((err == MP_OKAY) && (i >= a->used)) {
else if ((i = (sp_size_t)(n >> SP_WORD_SHIFT)) >= a->used) {
_sp_zero(r);
}
/* Change callers when more error cases returned. */
Expand Down

0 comments on commit 1679218

Please sign in to comment.