From: Paul Brossier Date: Thu, 20 Jul 2006 15:51:23 +0000 (+0000) Subject: fix memory freeing in pitchyinfft X-Git-Tag: bzr2git~617 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e43c0183d7f4882035638b9be1c02ba86151eefb;p=aubio.git fix memory freeing in pitchyinfft fix memory freeing in pitchyinfft --- 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); }