Skip to content

Commit

Permalink
unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
smittals2 committed Jan 13, 2025
1 parent e78ac67 commit 34389e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/bn_extra/convert.c
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ BIGNUM *BN_mpi2bn(const uint8_t *in, size_t len, BIGNUM *out) {
if (num_bits >= INT_MAX) {
return NULL;
}
BN_clear_bit(out, (int)BN_num_bits(out) - 1);
BN_clear_bit(out, (int)num_bits - 1);
}
return out;
}
Expand Down

0 comments on commit 34389e8

Please sign in to comment.