Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
ad273881
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
1 年多 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
ad273881
编写于
12月 14, 2016
作者:
V
Volker H. Simonis
提交者:
Behdad Esfahbod
12月 18, 2016
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Minor fixes to pacify Coverity code scan
Fixes
https://github.com/behdad/harfbuzz/pull/377
上级
1e1825bf
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
8 deletion
+12
-8
src/hb-ot-font.cc
src/hb-ot-font.cc
+5
-1
src/hb-ot-layout-gpos-table.hh
src/hb-ot-layout-gpos-table.hh
+7
-7
未找到文件。
src/hb-ot-font.cc
浏览文件 @
ad273881
...
...
@@ -355,7 +355,11 @@ struct hb_ot_face_cmap_accelerator_t
if
(
!
subtable
)
subtable
=
cmap
->
find_subtable
(
0
,
2
);
if
(
!
subtable
)
subtable
=
cmap
->
find_subtable
(
0
,
1
);
if
(
!
subtable
)
subtable
=
cmap
->
find_subtable
(
0
,
0
);
if
(
!
subtable
)(
subtable
=
cmap
->
find_subtable
(
3
,
0
))
&&
(
symbol
=
true
);
if
(
!
subtable
)
{
subtable
=
cmap
->
find_subtable
(
3
,
0
);
if
(
subtable
)
symbol
=
true
;
}
/* Meh. */
if
(
!
subtable
)
subtable
=
&
OT
::
Null
(
OT
::
CmapSubtable
);
...
...
src/hb-ot-layout-gpos-table.hh
浏览文件 @
ad273881
...
...
@@ -690,7 +690,7 @@ struct PairPosFormat1
(
this
+
coverage
).
add_coverage
(
c
->
input
);
unsigned
int
count
=
pairSet
.
len
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
(
this
+
pairSet
[
i
]).
collect_glyphs
(
c
,
&
valueFormat1
);
(
this
+
pairSet
[
i
]).
collect_glyphs
(
c
,
valueFormat
);
}
inline
const
Coverage
&
get_coverage
(
void
)
const
...
...
@@ -709,7 +709,7 @@ struct PairPosFormat1
skippy_iter
.
reset
(
buffer
->
idx
,
1
);
if
(
!
skippy_iter
.
next
())
return_trace
(
false
);
return_trace
((
this
+
pairSet
[
index
]).
apply
(
c
,
&
valueFormat1
,
skippy_iter
.
idx
));
return_trace
((
this
+
pairSet
[
index
]).
apply
(
c
,
valueFormat
,
skippy_iter
.
idx
));
}
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
...
...
@@ -718,11 +718,11 @@ struct PairPosFormat1
if
(
!
c
->
check_struct
(
this
))
return_trace
(
false
);
unsigned
int
len1
=
valueFormat
1
.
get_len
();
unsigned
int
len2
=
valueFormat
2
.
get_len
();
unsigned
int
len1
=
valueFormat
[
0
]
.
get_len
();
unsigned
int
len2
=
valueFormat
[
1
]
.
get_len
();
PairSet
::
sanitize_closure_t
closure
=
{
this
,
&
valueFormat1
,
valueFormat
,
len1
,
1
+
len1
+
len2
};
...
...
@@ -735,10 +735,10 @@ struct PairPosFormat1
OffsetTo
<
Coverage
>
coverage
;
/* Offset to Coverage table--from
* beginning of subtable */
ValueFormat
valueFormat
1
;
/*
Defines the types of data in
ValueFormat
valueFormat
[
2
];
/* [0]
Defines the types of data in
* ValueRecord1--for the first glyph
* in the pair--may be zero (0) */
ValueFormat
valueFormat2
;
/*
Defines the types of data in
/* [1]
Defines the types of data in
* ValueRecord2--for the second glyph
* in the pair--may be zero (0) */
OffsetArrayOf
<
PairSet
>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录