[xiph-commits] r11799 - trunk/speex/libspeex

jm at svn.xiph.org jm at svn.xiph.org
Tue Aug 22 21:47:37 PDT 2006


Author: jm
Date: 2006-08-22 21:47:35 -0700 (Tue, 22 Aug 2006)
New Revision: 11799

Modified:
   trunk/speex/libspeex/sb_celp.c
Log:
forgot to free memory for low_innov. sb_celp is now 100% leak free (AFAIK)


Modified: trunk/speex/libspeex/sb_celp.c
===================================================================
--- trunk/speex/libspeex/sb_celp.c	2006-08-22 23:55:23 UTC (rev 11798)
+++ trunk/speex/libspeex/sb_celp.c	2006-08-23 04:47:35 UTC (rev 11799)
@@ -363,6 +363,7 @@
    speex_free(st->interp_lpc);
    speex_free(st->interp_qlpc);
    speex_free(st->pi_gain);
+   speex_free(st->low_innov);
 
    speex_free(st->mem_sp);
    speex_free(st->mem_sp2);
@@ -928,6 +929,7 @@
    speex_free(st->interp_qlsp);
    speex_free(st->interp_qlpc);
    speex_free(st->pi_gain);
+   speex_free(st->low_innov);
    speex_free(st->mem_sp);
 
    speex_free(state);



More information about the commits mailing list