rsaenh: Don't compare a BOOL with 1 (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2015-03-18 11:48:23 +01:00 committed by Alexandre Julliard
parent 8fcef187e8
commit c641205cee
1 changed files with 1 additions and 1 deletions

View File

@ -1783,7 +1783,7 @@ static int mp_div_d (const mp_int * a, mp_digit b, mp_int * c, mp_digit * d)
}
/* power of two ? */
if (s_is_power_of_two(b, &ix) == 1) {
if (s_is_power_of_two(b, &ix)) {
if (d != NULL) {
*d = a->dp[0] & ((((mp_digit)1)<<ix) - 1);
}