mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng16] Update CHANGES, ANNOUNCE, minor editing of contrib/*/*.c
This commit is contained in:
parent
19ffb62903
commit
87049cbf84
6
ANNOUNCE
6
ANNOUNCE
@ -39,7 +39,11 @@ Version 1.6.20beta03 [November 25, 2015]
|
|||||||
|
|
||||||
Version 1.6.20rc01 [November 25, 2015]
|
Version 1.6.20rc01 [November 25, 2015]
|
||||||
Fixed an error in handling of bad zlib CMINFO field, found by American
|
Fixed an error in handling of bad zlib CMINFO field, found by American
|
||||||
Fuzzy Lop.
|
Fuzzy Lop, reported by Brian Carpenter. inflate() doesn't immediately
|
||||||
|
fault a bad CMINFO field; instead a 'too far back' error happens later
|
||||||
|
(at least some times). pngfix failed to limit CMINFO to the allowed
|
||||||
|
values but then assumed that window_bits was in range, triggering an
|
||||||
|
assert. The bug is mostly harmless; the file can't be fixed.
|
||||||
|
|
||||||
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
|
||||||
|
6
CHANGES
6
CHANGES
@ -5428,7 +5428,11 @@ Version 1.6.20beta03 [November 24, 2015]
|
|||||||
|
|
||||||
Version 1.6.20rc01 [November 25, 2015]
|
Version 1.6.20rc01 [November 25, 2015]
|
||||||
Fixed an error in handling of bad zlib CMINFO field, found by American
|
Fixed an error in handling of bad zlib CMINFO field, found by American
|
||||||
Fuzzy Lop.
|
Fuzzy Lop, reported by Brian Carpenter. inflate() doesn't immediately
|
||||||
|
fault a bad CMINFO field; instead a 'too far back' error happens later
|
||||||
|
(at least some times). pngfix failed to limit CMINFO to the allowed
|
||||||
|
values but then assumed that window_bits was in range, triggering an
|
||||||
|
assert. The bug is mostly harmless; the file can't be fixed.
|
||||||
|
|
||||||
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
|
||||||
|
@ -62,6 +62,7 @@ read_png(FILE *fp)
|
|||||||
{
|
{
|
||||||
png_size_t rowbytes = png_get_rowbytes(png_ptr, info_ptr);
|
png_size_t rowbytes = png_get_rowbytes(png_ptr, info_ptr);
|
||||||
|
|
||||||
|
/* Failure to initialize these is harmless */
|
||||||
row = malloc(rowbytes);
|
row = malloc(rowbytes);
|
||||||
display = malloc(rowbytes);
|
display = malloc(rowbytes);
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015 John Cunningham Bowler
|
* Copyright (c) 2014-2015 John Cunningham Bowler
|
||||||
*
|
*
|
||||||
* Last changed in libpng 1.6.18 [July 23, 2015]
|
* Last changed in libpng 1.6.20 [(PENDING RELEASE)]
|
||||||
*
|
*
|
||||||
* This code is released under the libpng license.
|
* This code is released under the libpng license.
|
||||||
* For conditions of distribution and use, see the disclaimer
|
* For conditions of distribution and use, see the disclaimer
|
||||||
|
Loading…
x
Reference in New Issue
Block a user