help static anaylsis
This commit is contained in:
parent
52c2c126c1
commit
1688fd1670
@ -95,7 +95,7 @@ void s_fp_add(fp_int *a, fp_int *b, fp_int *c)
|
||||
register fp_word t;
|
||||
|
||||
y = MAX(a->used, b->used);
|
||||
oldused = MAX(c->used, FP_SIZE); /* help static analysis w/ max size */
|
||||
oldused = MIN(c->used, FP_SIZE); /* help static analysis w/ largest size */
|
||||
c->used = y;
|
||||
|
||||
t = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user