From b94db2eb347ce35cd1472b4884e64600e05fde8e Mon Sep 17 00:00:00 2001 From: Glenn Randers-Pehrson Date: Tue, 7 Jan 2014 11:43:43 -0600 Subject: [PATCH] [libpng16] Updated warning message in png_check_IHDR() --- png.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/png.c b/png.c index 6b1d313a5..053b3ccbd 100644 --- a/png.c +++ b/png.c @@ -2479,7 +2479,8 @@ png_check_IHDR(png_const_structrp png_ptr, - 1 /* filter byte */ - 7*8 /* rounding of width to multiple of 8 pixels */ - 8) /* extra max_pixel_depth pad */ - png_warning(png_ptr, "Width is too large for libpng to process pixels"); + png_warning(png_ptr, + "Width may be too large for libpng to process pixels"); /* Check other values */ if (bit_depth != 1 && bit_depth != 2 && bit_depth != 4 &&