call mp_clear to match call to mp_init

pull/769/head
Jacob Barthelmeh 2017-03-08 11:26:16 -07:00
parent f77458992e
commit a0effa6329
1 changed files with 1 additions and 1 deletions

View File

@ -4249,8 +4249,8 @@ static int mp_div_d (mp_int * a, mp_digit b, mp_int * c, mp_digit * d)
if (c != NULL) {
mp_clamp(&q);
mp_exch(&q, c);
mp_clear(&q);
}
mp_clear(&q);
return res;
}