Fix crash in BN_rshift [from HEAD].

PR: 1663
This commit is contained in:
Andy Polyakov 2008-10-28 13:47:38 +00:00
parent 9af6802943
commit 8d64abacc6

View File

@ -177,7 +177,7 @@ int BN_rshift(BIGNUM *r, const BIGNUM *a, int n)
nw=n/BN_BITS2;
rb=n%BN_BITS2;
lb=BN_BITS2-rb;
if (nw > a->top || a->top == 0)
if (nw >= a->top || a->top == 0)
{
BN_zero(r);
return(1);