From 4ac8b5e0d6af292f524da820177aa8ada4433e44 Mon Sep 17 00:00:00 2001 From: Glenn Randers-Pehrson Date: Thu, 3 Aug 2017 16:29:58 -0500 Subject: [libpng16] Use png_debug2() instead of printf() for bug reporting. --- pngpread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pngpread.c') diff --git a/pngpread.c b/pngpread.c index 17a92d776..e61202add 100644 --- a/pngpread.c +++ b/pngpread.c @@ -1,7 +1,7 @@ /* pngpread.c - read a png file in push mode * - * Last changed in libpng 1.6.24 [August 4, 2016] + * Last changed in libpng 1.6.32 [(PENDING RELEASE)] * Copyright (c) 1998-2002,2004,2006-2017 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) @@ -253,7 +253,7 @@ png_push_read_chunk(png_structrp png_ptr, png_inforp info_ptr) } if (png_ptr->push_length > limit) { - printf(" png_ptr->push_length = %lu, limit = %lu\n", + png_debug2(1," png_ptr->push_length = %lu, limit = %lu", (unsigned long)png_ptr->push_length,(unsigned long)limit); png_chunk_error(png_ptr, "chunk data is too large"); } -- cgit v1.2.1