update resample deletion function
authorPaul Brossier <piem@altern.org>
Wed, 12 Jul 2006 16:20:57 +0000 (16:20 +0000)
committerPaul Brossier <piem@altern.org>
Wed, 12 Jul 2006 16:20:57 +0000 (16:20 +0000)
update resample deletion function

src/resample.c

index e5a495b..8d9366e 100644 (file)
@@ -43,6 +43,7 @@ aubio_resampler_t * new_aubio_resampler(float ratio, uint_t type) {
 
 void del_aubio_resampler(aubio_resampler_t *s) {
        src_delete(s->stat);
+       AUBIO_FREE(s->proc);
        AUBIO_FREE(s);
 }