Skip to content

Commit

Permalink
[libpng16] Use png_debug2() instead of printf() for bug reporting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Glenn Randers-Pehrson committed Aug 3, 2017
1 parent 9d4215e commit 4ac8b5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pngpread.c
Original file line number Diff line number Diff line change
@@ -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.)
Expand Down Expand Up @@ -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");
}
Expand Down
4 changes: 2 additions & 2 deletions pngrutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ png_read_chunk_header(png_structrp png_ptr)

if (length > limit)
{
printf(" length = %lu, limit = %lu\n",
(unsigned long)length,(unsigned long)limit);
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");
}

Expand Down

0 comments on commit 4ac8b5e

Please sign in to comment.