Merge branch 'master' of github.com:libvips/libvips

This commit is contained in:
John Cupitt 2019-08-19 23:31:43 +01:00
commit 1de2947d51
1 changed files with 3 additions and 1 deletions

View File

@ -547,7 +547,9 @@ read_header( Read *read, VipsImage *out )
}
if( read->width <= 0 ||
read->height <= 0 ) {
read->height <= 0 ||
read->width > 0x3FFF ||
read->height > 0x3FFF ) {
vips_error( "webp", "%s", _( "bad image dimensions" ) );
return( -1 );
}