From fe3c4810e1c8b535caf07df8e4434e322d3e6fc0 Mon Sep 17 00:00:00 2001 From: cboesch Date: Sun, 14 Nov 2010 09:12:34 +0000 Subject: cleanup: remove NULL checks before free() all over the code git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32624 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/ad_speex.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libmpcodecs/ad_speex.c') diff --git a/libmpcodecs/ad_speex.c b/libmpcodecs/ad_speex.c index a93a245492..f80b4d633e 100644 --- a/libmpcodecs/ad_speex.c +++ b/libmpcodecs/ad_speex.c @@ -126,8 +126,7 @@ static void uninit(sh_audio_t *sh) { if (ctx) { speex_bits_destroy(&ctx->bits); speex_decoder_destroy(ctx->dec_context); - if (ctx->hdr) - free(ctx->hdr); + free(ctx->hdr); free(ctx); } ctx = NULL; -- cgit v1.2.3