Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Libpng
提交
14a8996f
T
Third Party Libpng
项目概览
OpenHarmony
/
Third Party Libpng
大约 1 年 前同步成功
通知
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
14a8996f
编写于
8月 28, 2017
作者:
C
Christian Hesse
提交者:
Glenn Randers-Pehrson
8月 28, 2017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[libpng] Updated PNGMINUS_UNUSED macro and comments in contrib/pngminus/p*.c
上级
ef76b1f6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
5 deletion
+20
-5
contrib/pngminus/png2pnm.c
contrib/pngminus/png2pnm.c
+10
-3
contrib/pngminus/pnm2png.c
contrib/pngminus/pnm2png.c
+10
-2
未找到文件。
contrib/pngminus/png2pnm.c
浏览文件 @
14a8996f
...
@@ -5,7 +5,8 @@
...
@@ -5,7 +5,8 @@
* version 1.0 - 1999.10.15 - First version.
* version 1.0 - 1999.10.15 - First version.
* 1.1 - 2017.04.22 - Add buffer-size check (Glenn Randers-Pehrson)
* 1.1 - 2017.04.22 - Add buffer-size check (Glenn Randers-Pehrson)
* 1.2 - 2017.08.24 - Fix potential overflow in buffer-size check
* 1.2 - 2017.08.24 - Fix potential overflow in buffer-size check
(Glenn Randers-Pehrson)
* (Glenn Randers-Pehrson)
* 1.3 - 2017.08.28 - Add PNGMINUS_UNUSED (Christian Hesse)
*
*
* Permission to use, copy, modify, and distribute this software and
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted,
* its documentation for any purpose and without fee is hereby granted,
...
@@ -52,7 +53,13 @@
...
@@ -52,7 +53,13 @@
# define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
# define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
#endif
#endif
#define PNGMINUS_UNUSED(param) (void)param;
#ifndef PNGMINUS_UNUSED
/* Unused formal parameter warnings are silenced using the following macro
* which is expected to have no bad effects on performance (optimizing
* compilers will probably remove it entirely).
*/
# define PNGMINUS_UNUSED(param) (void)param
#endif
/* function prototypes */
/* function prototypes */
...
@@ -446,7 +453,7 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
...
@@ -446,7 +453,7 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
if
(
png_pixels
!=
(
unsigned
char
*
)
NULL
)
if
(
png_pixels
!=
(
unsigned
char
*
)
NULL
)
free
(
png_pixels
);
free
(
png_pixels
);
PNGMINUS_UNUSED
(
raw
)
/* to quiet a Coverity defect */
PNGMINUS_UNUSED
(
raw
)
;
/* to quiet a Coverity defect */
return
TRUE
;
return
TRUE
;
}
/* end of source */
}
/* end of source */
...
...
contrib/pngminus/pnm2png.c
浏览文件 @
14a8996f
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
* version 1.2 - 2017.04.22 - Add buffer-size check
* version 1.2 - 2017.04.22 - Add buffer-size check
* 1.3 - 2017.08.24 - Fix potential overflow in buffer-size check
* 1.3 - 2017.08.24 - Fix potential overflow in buffer-size check
* (Glenn Randers-Pehrson)
* (Glenn Randers-Pehrson)
* 1.4 - 2017.08.28 - Add PNGMINUS_UNUSED (Christian Hesse)
*
*
* Permission to use, copy, modify, and distribute this software and
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted,
* its documentation for any purpose and without fee is hereby granted,
...
@@ -50,7 +51,14 @@
...
@@ -50,7 +51,14 @@
# define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
# define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
#endif
#endif
#define PNGMINUS_UNUSED(param) (void)param;
#ifndef PNGMINUS_UNUSED
/* Unused formal parameter warnings are silenced using the following macro
* which is expected to have no bad effects on performance (optimizing
* compilers will probably remove it entirely).
*/
# define PNGMINUS_UNUSED(param) (void)param
#endif
/* function prototypes */
/* function prototypes */
...
@@ -515,7 +523,7 @@ BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace,
...
@@ -515,7 +523,7 @@ BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace,
if
(
png_pixels
!=
(
unsigned
char
*
)
NULL
)
if
(
png_pixels
!=
(
unsigned
char
*
)
NULL
)
free
(
png_pixels
);
free
(
png_pixels
);
PNGMINUS_UNUSED
(
raw
)
/* Quiet a Coverity defect */
PNGMINUS_UNUSED
(
raw
)
;
/* Quiet a Coverity defect */
return
TRUE
;
return
TRUE
;
}
/* end of pnm2png */
}
/* end of pnm2png */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录