help static anaylsis

This commit is contained in:
toddouska 2014-12-01 16:35:04 -08:00
parent 52c2c126c1
commit 1688fd1670
1 changed files with 1 additions and 1 deletions

View File

@ -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;