TWebPVGetField(): Add apparently missing break statement impacting TIFFTAG_WEBP_LOSSLESS.

This commit is contained in:
Bob Friesenhahn 2018-11-03 09:41:15 -05:00
parent 34b5be5a2e
commit d1b5834dfe

View File

@ -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);
}