# HG changeset patch # User reimar # Date 1137702394 0 # Node ID 7dac2afa70aa56f3d5ae3a545c0015cd291a991a # Parent 28d1d1b44e2095090a88700b019399d72d6ca9b6 Use free instead of speex_free - since speex_free does not appear in the headers it probably is for internal use only. diff -r 28d1d1b44e20 -r 7dac2afa70aa libmpcodecs/ad_speex.c --- 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;