Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Libpng
提交
9bddba26
T
Third Party Libpng
项目概览
OpenHarmony
/
Third Party Libpng
接近 2 年 前同步成功
通知
4
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Libpng
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9bddba26
编写于
10月 17, 2017
作者:
G
Glenn Randers-Pehrson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[libpng16] Initialize entire palette array to zero in png_handle_PLTE().
上级
3b5bcea0
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
10 addition
and
8 deletion
+10
-8
ANNOUNCE
ANNOUNCE
+3
-3
CHANGES
CHANGES
+2
-2
pngrutil.c
pngrutil.c
+2
-2
pngset.c
pngset.c
+3
-1
未找到文件。
ANNOUNCE
浏览文件 @
9bddba26
Libpng 1.6.35beta01 - October 1
6
, 2017
Libpng 1.6.35beta01 - October 1
7
, 2017
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.
...
...
@@ -24,12 +24,12 @@ Other information:
Changes since the last public release (1.6.34):
Version 1.6.35beta01 [October 1
6
, 2017]
Version 1.6.35beta01 [October 1
7
, 2017]
Restored 21 of the contrib/pngsuite/i*.png, which do not cause test
failures. Placed the remainder in contrib/pngsuite/interlaced/i*.png.
Added calls to png_set_*() transforms commonly used by browsers to
the fuzzer.
Do not enable tRNS having trans_color with out-of-range value
.
Initialize entire palette array to zero in png_handle_PLTE()
.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit
...
...
CHANGES
浏览文件 @
9bddba26
...
...
@@ -6040,12 +6040,12 @@ Version 1.6.33 [September 28, 2017]
Version 1.6.34 [September 29, 2017]
Removed contrib/pngsuite/i*.png; some of caused test failures.
Version 1.6.35beta01 [October 1
6
, 2017]
Version 1.6.35beta01 [October 1
7
, 2017]
Restored 21 of the contrib/pngsuite/i*.png, which do not cause test
failures. Placed the remainder in contrib/pngsuite/interlaced/i*.png.
Added calls to png_set_*() transforms commonly used by browsers to
the fuzzer.
Do not enable tRNS having trans_color with out-of-range value
.
Initialize entire palette array to zero in png_handle_PLTE()
.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit
...
...
pngrutil.c
浏览文件 @
9bddba26
/* pngrutil.c - utilities to read a PNG file
*
* Last changed in libpng 1.6.3
3 [September 28, 2017
]
* Last changed in libpng 1.6.3
5 [(PENDING RELEASE)
]
* Copyright (c) 1998-2002,2004,2006-2017 Glenn Randers-Pehrson
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
...
...
@@ -912,7 +912,7 @@ png_handle_IHDR(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
void
/* PRIVATE */
png_handle_PLTE
(
png_structrp
png_ptr
,
png_inforp
info_ptr
,
png_uint_32
length
)
{
png_color
palette
[
PNG_MAX_PALETTE_LENGTH
];
png_color
palette
[
PNG_MAX_PALETTE_LENGTH
]
=
{
0
}
;
int
max_palette_length
,
num
,
i
;
#ifdef PNG_POINTER_INDEXING_SUPPORTED
png_colorp
pal_ptr
;
...
...
pngset.c
浏览文件 @
9bddba26
/* pngset.c - storage of image information into info struct
*
* Last changed in libpng 1.6.3
5 [(PENDING RELEASE)
]
* Last changed in libpng 1.6.3
2 [August 24, 2017
]
* Copyright (c) 1998-2017 Glenn Randers-Pehrson
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
...
...
@@ -1025,6 +1025,7 @@ png_set_tRNS(png_structrp png_ptr, png_inforp info_ptr,
if
(
trans_color
!=
NULL
)
{
#ifdef PNG_WARNINGS_SUPPORTED
if
(
info_ptr
->
bit_depth
<
16
)
{
int
sample_max
=
(
1
<<
info_ptr
->
bit_depth
)
-
1
;
...
...
@@ -1038,6 +1039,7 @@ png_set_tRNS(png_structrp png_ptr, png_inforp info_ptr,
png_warning
(
png_ptr
,
"tRNS chunk has out-of-range samples for bit_depth"
);
}
#endif
info_ptr
->
trans_color
=
*
trans_color
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录