[libpng16] Removed unreachable return statement after png_chunk_error()

in pngrutil.c
This commit is contained in:
Glenn Randers-Pehrson 2014-02-27 12:12:54 -06:00
parent 53c60fa94b
commit b8f433417f
3 changed files with 14 additions and 11 deletions

View File

@ -1,5 +1,5 @@
Libpng 1.6.10rc01 - February 27, 2014
Libpng 1.6.10rc02 - February 27, 2014
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.
@ -9,20 +9,20 @@ Files available for download:
Source files with LF line endings (for Unix/Linux) and with a
"configure" script
1.6.10rc01.tar.xz (LZMA-compressed, recommended)
1.6.10rc01.tar.gz
1.6.10rc02.tar.xz (LZMA-compressed, recommended)
1.6.10rc02.tar.gz
Source files with CRLF line endings (for Windows), without the
"configure" script
lp1610r01.7z (LZMA-compressed, recommended)
lp1610r01.zip
lp1610r02.7z (LZMA-compressed, recommended)
lp1610r02.zip
Other information:
1.6.10rc01-README.txt
1.6.10rc01-LICENSE.txt
libpng-1.6.10rc01-*.asc (armored detached GPG signatures)
1.6.10rc02-README.txt
1.6.10rc02-LICENSE.txt
libpng-1.6.10rc02-*.asc (armored detached GPG signatures)
Changes since the last public release (1.6.9):
@ -90,6 +90,8 @@ Version 1.6.10beta03 [February 25, 2014]
Version 1.6.10rc01 [February 27, 2014]
Fixed typos in the manual and in scripts/pnglibconf.dfa (CFLAGS -> CPPFLAGS
and PNG_USR_CONFIG -> PNG_USER_CONFIG).
Removed unreachable return statement after png_chunk_error()
in pngrutil.c
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@ -4865,6 +4865,10 @@ Version 1.6.10rc01 [February 27, 2014]
Fixed typos in the manual and in scripts/pnglibconf.dfa (CFLAGS -> CPPFLAGS
and PNG_USR_CONFIG -> PNG_USER_CONFIG).
Version 1.6.10rc02 [February 27, 2014]
Removed unreachable return statement after png_chunk_error()
in pngrutil.c
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit
https://lists.sourceforge.net/lists/listinfo/png-mng-implement

View File

@ -227,10 +227,7 @@ png_crc_finish(png_structrp png_ptr, png_uint_32 skip)
}
else
{
png_chunk_error(png_ptr, "CRC error");
return (0);
}
return (1);
}