From e43c0183d7f4882035638b9be1c02ba86151eefb Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 20 Jul 2006 15:51:23 +0000 Subject: [PATCH] fix memory freeing in pitchyinfft fix memory freeing in pitchyinfft --- src/pitchyinfft.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pitchyinfft.c b/src/pitchyinfft.c index ed1b32f6..0c7b0f2e 100644 --- a/src/pitchyinfft.c +++ b/src/pitchyinfft.c @@ -147,4 +147,7 @@ void del_aubio_pitchyinfft(aubio_pitchyinfft_t *p){ del_fvec(p->sqrmag); del_cvec(p->res); del_cvec(p->fftout); + del_fvec(p->winput); + del_fvec(p->weight); + AUBIO_FREE(p); } -- 2.26.2