From d063f13700aa86365589f49b697e8c42b9cae4ca Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 28 Aug 2019 15:46:40 +0200 Subject: avcodec/tiff: add missing break in tiff_decode_tag() --- libavcodec/tiff.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec') diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 1f1a1a3698..d02b532a8e 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -958,6 +958,7 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame) switch (tag) { case TIFF_SUBFILE: s->is_thumbnail = (value != 0); + break; case TIFF_WIDTH: s->width = value; break; -- cgit v1.2.3