From: Paul Brossier Date: Wed, 12 Jul 2006 16:21:52 +0000 (+0000) Subject: update fcomb deletion function X-Git-Tag: bzr2git~635 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=028c8e964c4847e68b956fd8008cd0df20723013;p=aubio.git update fcomb deletion function update fcomb deletion function --- diff --git a/src/pitchfcomb.c b/src/pitchfcomb.c index 7b39dc9e..9321b35d 100644 --- a/src/pitchfcomb.c +++ b/src/pitchfcomb.c @@ -127,6 +127,8 @@ void del_aubio_pitchfcomb (aubio_pitchfcomb_t * p) { del_cvec(p->fftOut); del_fvec(p->fftLastPhase); + del_fvec(p->win); + del_fvec(p->winput); del_aubio_mfft(p->fft); AUBIO_FREE(p); }