From 2b24e5831048727071a5e0359e1eb1f589d45cfb Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Tue, 2 Sep 2014 09:39:24 +1000 Subject: [PATCH] omx/h264: remove stray semicolon after if MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Coverity reported this, looks wrong to me. Reviewed-by: Christian König Signed-off-by: Dave Airlie --- src/gallium/state_trackers/omx/vid_dec_h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/state_trackers/omx/vid_dec_h264.c b/src/gallium/state_trackers/omx/vid_dec_h264.c index 7f1c2facc39..7b57785c28f 100644 --- a/src/gallium/state_trackers/omx/vid_dec_h264.c +++ b/src/gallium/state_trackers/omx/vid_dec_h264.c @@ -681,7 +681,7 @@ static void slice_header(vid_dec_PrivateType *priv, struct vl_rbsp *rbsp, if (priv->picture.h264.field_pic_flag) { unsigned bottom_field_flag = vl_rbsp_u(rbsp, 1); - if (bottom_field_flag != priv->picture.h264.bottom_field_flag); + if (bottom_field_flag != priv->picture.h264.bottom_field_flag) vid_dec_h264_EndFrame(priv); priv->picture.h264.bottom_field_flag = bottom_field_flag; -- 2.30.2