[MPlayer-cvslog] CVS: main/libmpcodecs ad_speex.c,1.1,1.2
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Thu Jan 19 21:26:37 CET 2006
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv8410
Modified Files:
ad_speex.c
Log Message:
Use free instead of speex_free - since speex_free does not appear in the
headers it probably is for internal use only.
Index: ad_speex.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/ad_speex.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ad_speex.c 5 Nov 2005 12:01:05 -0000 1.1
+++ ad_speex.c 19 Jan 2006 20:26:34 -0000 1.2
@@ -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;
More information about the MPlayer-cvslog
mailing list