From 1faec8c283c961469fc8657d8dd5354590a6eb62 Mon Sep 17 00:00:00 2001 From: fredrik Date: Tue, 19 Feb 2019 23:26:58 +0100 Subject: [PATCH] fix memleak --- acb_dirichlet/hardy_z_zero.c | 1 + 1 file changed, 1 insertion(+) diff --git a/acb_dirichlet/hardy_z_zero.c b/acb_dirichlet/hardy_z_zero.c index e3577ad2..e31d257a 100644 --- a/acb_dirichlet/hardy_z_zero.c +++ b/acb_dirichlet/hardy_z_zero.c @@ -212,6 +212,7 @@ _refine_hardy_z_zero_newton(arb_t res, const arf_t ra, const arf_t rb, slong pre arb_set(res, acb_imagref(z)); + flint_free(steps); acb_clear(z); acb_clear(zstart); _acb_vec_clear(v, 2);