]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/tiff: add missing break in tiff_decode_tag()
authorPaul B Mahol <onemda@gmail.com>
Wed, 28 Aug 2019 13:46:40 +0000 (15:46 +0200)
committerPaul B Mahol <onemda@gmail.com>
Wed, 28 Aug 2019 13:46:40 +0000 (15:46 +0200)
libavcodec/tiff.c

index 1f1a1a3698518f9b87838b7bb24429f5c4c18aa0..d02b532a8ecbd37a62bfd15f7ec1269a9ccff85d 100644 (file)
@@ -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;