prevent /0 in jfif res decode
This commit is contained in:
parent
a2cd5215f1
commit
b9eddecca3
@ -524,7 +524,9 @@ read_jpeg_header( ReadJpeg *jpeg, VipsImage *out )
|
|||||||
/* X_density / Y_density gives the pixel aspect ratio.
|
/* X_density / Y_density gives the pixel aspect ratio.
|
||||||
* Leave xres, but adjust yres.
|
* Leave xres, but adjust yres.
|
||||||
*/
|
*/
|
||||||
yres = xres * cinfo->X_density / cinfo->Y_density;
|
if( cinfo->Y_density > 0 )
|
||||||
|
yres = xres * cinfo->X_density /
|
||||||
|
cinfo->Y_density;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
|
Loading…
Reference in New Issue
Block a user