From 9a1420bfda41f32a9e1b6d57517d2d4c6924c434 Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Thu, 8 Dec 2011 14:45:36 +0000 Subject: [PATCH] cljr: remove stray semicolon Signed-off-by: Mans Rullgard --- libavcodec/cljr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c index 61bd909199..1b8bc53fb3 100644 --- a/libavcodec/cljr.c +++ b/libavcodec/cljr.c @@ -139,7 +139,7 @@ static av_cold int decode_init(AVCodecContext *avctx){ static av_cold int decode_end(AVCodecContext *avctx) { CLJRContext *a = avctx->priv_data; - if (a->picture.data[0]); + if (a->picture.data[0]) avctx->release_buffer(avctx, &a->picture); return 0; }