diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-08-28 15:46:40 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-08-28 15:46:40 +0200 |
commit | d063f13700aa86365589f49b697e8c42b9cae4ca (patch) | |
tree | bcf8d986a608668c9042b2a6037af4adcc2bf997 /libavcodec/tiff.c | |
parent | d8410e9cf9dbc36d123113b442d5cda00d04dffb (diff) | |
download | ffmpeg-d063f13700aa86365589f49b697e8c42b9cae4ca.tar.gz |
avcodec/tiff: add missing break in tiff_decode_tag()
Diffstat (limited to 'libavcodec/tiff.c')
-rw-r--r-- | libavcodec/tiff.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |