[libpng17] Update CHANGES and ANNOUNCE, fix typos in pngrutil.c

This commit is contained in:
Glenn Randers-Pehrson 2016-07-23 16:41:19 -05:00
parent 4283e2bf66
commit 2a2373c1ec
3 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,5 @@
Libpng 1.7.0beta83 - July 16, 2016 Libpng 1.7.0beta83 - July 23, 2016
This is not intended to be a public release. It will be replaced This is not intended to be a public release. It will be replaced
within a few weeks by a public version or by another test version. within a few weeks by a public version or by another test version.
@ -1390,10 +1390,11 @@ Version 1.7.0beta82 [July 4, 2016]
Relocated misplaced #endif in png.c sRGB profile checking. Relocated misplaced #endif in png.c sRGB profile checking.
Fixed two Coverity issues in pngcp.c. Fixed two Coverity issues in pngcp.c.
Version 1.7.0beta83 [July 16, 2016] Version 1.7.0beta83 [July 23, 2016]
Fixed some indentation to comply with our coding style. Fixed some indentation to comply with our coding style.
Removed/rearranged certain png_struct fields that are only used Removed/rearranged certain png_struct fields that are only used
in reading. in reading.
Fixed debug test of output gamma.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit (subscription required; visit

View File

@ -5690,10 +5690,11 @@ Version 1.7.0beta82 [July 4, 2016]
Relocated misplaced #endif in png.c sRGB profile checking. Relocated misplaced #endif in png.c sRGB profile checking.
Fixed two Coverity issues in pngcp.c. Fixed two Coverity issues in pngcp.c.
Version 1.7.0beta83 [July 16, 2016] Version 1.7.0beta83 [July 23, 2016]
Fixed some indentation to comply with our coding style. Fixed some indentation to comply with our coding style.
Removed/rearranged certain png_struct fields that are only used Removed/rearranged certain png_struct fields that are only used
in reading. in reading.
Fixed debug test of output gamma.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit (subscription required; visit

View File

@ -231,10 +231,10 @@ png_read_buffer(png_structrp png_ptr, png_alloc_size_t new_size, int warn)
else if (warn < 2) /* else silent */ else if (warn < 2) /* else silent */
{ {
if (warn != 0) if (warn != 0)
png_chunk_warning(png_ptr, "insufficient memory to read chunk"); png_chunk_warning(png_ptr, "insufficient memory to read chunk");
else else
png_chunk_error(png_ptr, "insufficient memory to read chunk"); png_chunk_error(png_ptr, "insufficient memory to read chunk");
} }
} }
@ -4292,7 +4292,7 @@ png_read_process_IDAT(png_structrp png_ptr, png_bytep transformed_row,
/* Run the list. It is ok if it doesn't end up doing /* Run the list. It is ok if it doesn't end up doing
* anything; this can happen with a lazy init. * anything; this can happen with a lazy init.
* *
* NOTE: if the only thingin the list is a palette check * NOTE: if the only thing in the list is a palette check
* function it can remove itself at this point. * function it can remove itself at this point.
*/ */
max_depth = png_run_transform_list_forwards(png_ptr, &tc); max_depth = png_run_transform_list_forwards(png_ptr, &tc);