Commit fe81a1b0 authored by Matt Caswell's avatar Matt Caswell
Browse files

Remove useless assignment



The variable assignment c1 is never read before it is overwritten.

Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
parent 08f6ae5b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -729,9 +729,8 @@ void bn_mul_high(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, BN_ULONG *l, int n2,
     */
    if (l != NULL) {
        lp = &(t[n2 + n]);
        c1 = (int)(bn_add_words(lp, &(r[0]), &(l[0]), n));
        bn_add_words(lp, &(r[0]), &(l[0]), n);
    } else {
        c1 = 0;
        lp = &(r[0]);
    }