Commit cb8c00d83b7d9d972eb7cd73c16974dbcfc7127a

Francois Perrad 2019-04-08T05:35:48

remove useless initialization

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/bn_mp_balance_mul.c b/bn_mp_balance_mul.c
index cf83e6f..78c5a82 100644
--- a/bn_mp_balance_mul.c
+++ b/bn_mp_balance_mul.c
@@ -14,7 +14,6 @@ int mp_balance_mul(const mp_int *a, const mp_int *b, mp_int *c)
 
    nblocks = MAX(a->used, b->used) / MIN(a->used, b->used);
    bsize = MIN(a->used, b->used) ;
-   e = MP_OKAY;
 
    if ((e = mp_init_size(&a0, bsize + 2)) != MP_OKAY) {
       return e;