[libpng15] Imported from libpng-1.5.30beta01.tar

This commit is contained in:
Glenn Randers-Pehrson 2017-08-28 17:56:41 -05:00
parent f9b874e27e
commit 5b5e68dee4

View File

@ -392,7 +392,7 @@ BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace,
return FALSE;
}
if ((png_pixels = (png_byte *)
malloc (row_bytes * height * sizeof (png_byte))) == NULL)
malloc ((size_t)row_bytes * (size_t)height * sizeof (png_byte))) == NULL)
return FALSE;
/* read data from PNM file */