projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c621415
)
fix memory freeing in pitchyinfft
author
Paul Brossier
<piem@altern.org>
Thu, 20 Jul 2006 15:51:23 +0000
(15:51 +0000)
committer
Paul Brossier
<piem@altern.org>
Thu, 20 Jul 2006 15:51:23 +0000
(15:51 +0000)
fix memory freeing in pitchyinfft
src/pitchyinfft.c
patch
|
blob
|
history
diff --git
a/src/pitchyinfft.c
b/src/pitchyinfft.c
index ed1b32f663449d8c0525135186ec6b4a144b4643..0c7b0f2e63c26871de14685bc3848b0cfa2e34d2 100644
(file)
--- 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);
}