mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng16] Removed unreachable return statement after png_chunk_error()
in pngrutil.c
This commit is contained in:
18
ANNOUNCE
18
ANNOUNCE
@@ -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
|
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.
|
||||||
@@ -9,20 +9,20 @@ Files available for download:
|
|||||||
Source files with LF line endings (for Unix/Linux) and with a
|
Source files with LF line endings (for Unix/Linux) and with a
|
||||||
"configure" script
|
"configure" script
|
||||||
|
|
||||||
1.6.10rc01.tar.xz (LZMA-compressed, recommended)
|
1.6.10rc02.tar.xz (LZMA-compressed, recommended)
|
||||||
1.6.10rc01.tar.gz
|
1.6.10rc02.tar.gz
|
||||||
|
|
||||||
Source files with CRLF line endings (for Windows), without the
|
Source files with CRLF line endings (for Windows), without the
|
||||||
"configure" script
|
"configure" script
|
||||||
|
|
||||||
lp1610r01.7z (LZMA-compressed, recommended)
|
lp1610r02.7z (LZMA-compressed, recommended)
|
||||||
lp1610r01.zip
|
lp1610r02.zip
|
||||||
|
|
||||||
Other information:
|
Other information:
|
||||||
|
|
||||||
1.6.10rc01-README.txt
|
1.6.10rc02-README.txt
|
||||||
1.6.10rc01-LICENSE.txt
|
1.6.10rc02-LICENSE.txt
|
||||||
libpng-1.6.10rc01-*.asc (armored detached GPG signatures)
|
libpng-1.6.10rc02-*.asc (armored detached GPG signatures)
|
||||||
|
|
||||||
Changes since the last public release (1.6.9):
|
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]
|
Version 1.6.10rc01 [February 27, 2014]
|
||||||
Fixed typos in the manual and in scripts/pnglibconf.dfa (CFLAGS -> CPPFLAGS
|
Fixed typos in the manual and in scripts/pnglibconf.dfa (CFLAGS -> CPPFLAGS
|
||||||
and PNG_USR_CONFIG -> PNG_USER_CONFIG).
|
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
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
4
CHANGES
4
CHANGES
@@ -4865,6 +4865,10 @@ Version 1.6.10rc01 [February 27, 2014]
|
|||||||
Fixed typos in the manual and in scripts/pnglibconf.dfa (CFLAGS -> CPPFLAGS
|
Fixed typos in the manual and in scripts/pnglibconf.dfa (CFLAGS -> CPPFLAGS
|
||||||
and PNG_USR_CONFIG -> PNG_USER_CONFIG).
|
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
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
||||||
|
|||||||
@@ -227,10 +227,7 @@ png_crc_finish(png_structrp png_ptr, png_uint_32 skip)
|
|||||||
}
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
|
||||||
png_chunk_error(png_ptr, "CRC error");
|
png_chunk_error(png_ptr, "CRC error");
|
||||||
return (0);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (1);
|
return (1);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user