mirror of
https://github.com/vale981/arb
synced 2025-03-04 17:01:40 -05:00
fix a memory leak
This commit is contained in:
parent
04973d7b64
commit
76fbb1cf0b
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ _acb_poly_exp_pi_i_series(acb_ptr f, acb_srcptr h, slong hlen, slong len, slong
|
|||
acb_exp_pi_i(t + hlen, h, prec);
|
||||
_acb_poly_exp_series(f, t, hlen, len, prec);
|
||||
_acb_vec_scalar_mul(f, f, len, t + hlen, prec);
|
||||
_acb_vec_clear(t, hlen);
|
||||
_acb_vec_clear(t, hlen + 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue