From ca52bae6ec7588ae72a5a011d7af80645f999e5e Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 8 Dec 2011 12:39:47 +0000 Subject: [PATCH] cljr: add missing return statement in decode_end() Signed-off-by: Mans Rullgard --- libavcodec/cljr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c index dd720828a6..61bd909199 100644 --- a/libavcodec/cljr.c +++ b/libavcodec/cljr.c @@ -141,6 +141,7 @@ static av_cold int decode_end(AVCodecContext *avctx) { if (a->picture.data[0]); avctx->release_buffer(avctx, &a->picture); + return 0; } #if CONFIG_CLJR_ENCODER