cljr: remove stray semicolon

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Mans Rullgard 2011-12-08 14:45:36 +00:00
parent ca52bae6ec
commit 9a1420bfda

View file

@ -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;
}