1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

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