From d1b5834dfe170c8a4b69578ddc60ee632278154c Mon Sep 17 00:00:00 2001 From: Bob Friesenhahn Date: Sat, 3 Nov 2018 09:41:15 -0500 Subject: [PATCH] TWebPVGetField(): Add apparently missing break statement impacting TIFFTAG_WEBP_LOSSLESS. --- libtiff/tif_webp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libtiff/tif_webp.c b/libtiff/tif_webp.c index e7b0c15d..a002f481 100644 --- a/libtiff/tif_webp.c +++ b/libtiff/tif_webp.c @@ -594,6 +594,7 @@ TWebPVGetField(TIFF* tif, uint32 tag, va_list ap) break; case TIFFTAG_WEBP_LOSSLESS: *va_arg(ap, int*) = sp->lossless; + break; default: return (*sp->vgetparent)(tif, tag, ap); }