提交 5b84901c 编写于 作者: J John Bowler 提交者: Glenn Randers-Pehrson

[libpng15] Turned on multiple png_read_update_info in pngvalid transform tests.

上级 57cbcf6b
Libpng 1.5.6beta06 - October 15, 2011 Libpng 1.5.6beta06 - October 17, 2011
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.
...@@ -70,7 +70,7 @@ Version 1.5.6beta05 [October 12, 2011] ...@@ -70,7 +70,7 @@ Version 1.5.6beta05 [October 12, 2011]
previously possible because the png_struct buffer was always misaligned. previously possible because the png_struct buffer was always misaligned.
Fixed bug in png_write_chunk_header() debug print, introduced in 1.5.6beta01. Fixed bug in png_write_chunk_header() debug print, introduced in 1.5.6beta01.
Version 1.5.6beta06 [October 15, 2011] Version 1.5.6beta06 [October 17, 2011]
Removed two redundant tests for unitialized row. Removed two redundant tests for unitialized row.
Fixed a relatively harmless memory overwrite in compressed text writing Fixed a relatively harmless memory overwrite in compressed text writing
with a 1 byte zlib buffer. with a 1 byte zlib buffer.
...@@ -79,6 +79,7 @@ Version 1.5.6beta06 [October 15, 2011] ...@@ -79,6 +79,7 @@ Version 1.5.6beta06 [October 15, 2011]
most of the errors revealed in pngvalid, however doing the gamma work most of the errors revealed in pngvalid, however doing the gamma work
twice results in inaccuracies that can't be easily fixed. There is now twice results in inaccuracies that can't be easily fixed. There is now
a warning in the code if this is going to happen. a warning in the code if this is going to happen.
Turned on multiple png_read_update_info in pngvalid transform tests.
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
......
...@@ -3631,7 +3631,7 @@ Version 1.5.6beta05 [October 12, 2011] ...@@ -3631,7 +3631,7 @@ Version 1.5.6beta05 [October 12, 2011]
previously possible because the png_struct buffer was always misaligned. previously possible because the png_struct buffer was always misaligned.
Fixed bug in png_write_chunk_header() debug print, introduced in 1.5.6beta01. Fixed bug in png_write_chunk_header() debug print, introduced in 1.5.6beta01.
Version 1.5.6beta06 [October 15, 2011] Version 1.5.6beta06 [October 17, 2011]
Removed two redundant tests for unitialized row. Removed two redundant tests for unitialized row.
Fixed a relatively harmless memory overwrite in compressed text writing Fixed a relatively harmless memory overwrite in compressed text writing
with a 1 byte zlib buffer. with a 1 byte zlib buffer.
...@@ -3640,6 +3640,7 @@ Version 1.5.6beta06 [October 15, 2011] ...@@ -3640,6 +3640,7 @@ Version 1.5.6beta06 [October 15, 2011]
most of the errors revealed in pngvalid, however doing the gamma work most of the errors revealed in pngvalid, however doing the gamma work
twice results in inaccuracies that can't be easily fixed. There is now twice results in inaccuracies that can't be easily fixed. There is now
a warning in the code if this is going to happen. a warning in the code if this is going to happen.
Turned on multiple png_read_update_info in pngvalid transform tests.
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
......
...@@ -5183,7 +5183,7 @@ transform_display_init(transform_display *dp, png_modifier *pm, png_uint_32 id, ...@@ -5183,7 +5183,7 @@ transform_display_init(transform_display *dp, png_modifier *pm, png_uint_32 id,
/* Standard fields */ /* Standard fields */
standard_display_init(&dp->this, &pm->this, id, 0/*do_interlace*/, standard_display_init(&dp->this, &pm->this, id, 0/*do_interlace*/,
1/*use_update_info*/); pm->use_update_info);
/* Parameter fields */ /* Parameter fields */
dp->pm = pm; dp->pm = pm;
...@@ -7043,7 +7043,7 @@ gamma_display_init(gamma_display *dp, png_modifier *pm, png_uint_32 id, ...@@ -7043,7 +7043,7 @@ gamma_display_init(gamma_display *dp, png_modifier *pm, png_uint_32 id,
{ {
/* Standard fields */ /* Standard fields */
standard_display_init(&dp->this, &pm->this, id, 0/*do_interlace*/, standard_display_init(&dp->this, &pm->this, id, 0/*do_interlace*/,
1/*use_update_info*/); pm->use_update_info);
/* Parameter fields */ /* Parameter fields */
dp->pm = pm; dp->pm = pm;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册