changeset 17429:7dac2afa70aa

Use free instead of speex_free - since speex_free does not appear in the headers it probably is for internal use only.
author reimar
date Thu, 19 Jan 2006 20:26:34 +0000
parents 28d1d1b44e20
children bfb5ba831aed
files libmpcodecs/ad_speex.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/ad_speex.c	Thu Jan 19 10:41:40 2006 +0000
+++ b/libmpcodecs/ad_speex.c	Thu Jan 19 20:26:34 2006 +0000
@@ -74,7 +74,7 @@
     speex_bits_destroy(&ctx->bits);
     speex_decoder_destroy(ctx->dec_context);
     if (ctx->hdr)
-      speex_free(ctx->hdr);
+      free(ctx->hdr);
     free(ctx);
   }
   ctx = NULL;