Commit c2cfc956 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

bn/bn_add.c: fix dead code elimination that went bad.

parent 9c7a780b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
                break;
        }
    }
    memcpy(rp, ap, sizeof(*rp) * (max - i));
    memcpy(rp, ap, sizeof(*rp) * dif);

    r->top = max;
    r->neg = 0;