Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
91eb5f17
D
dragonwell8_hotspot
项目概览
openanolis
/
dragonwell8_hotspot
通知
2
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_hotspot
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
91eb5f17
编写于
7月 20, 2010
作者:
A
apangin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6964170: Verifier crashes
Summary: Check if klassOop != NULL rather than klass_part != NULL Reviewed-by: kamg, never
上级
2e768006
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
6 addition
and
8 deletion
+6
-8
src/share/vm/classfile/verificationType.cpp
src/share/vm/classfile/verificationType.cpp
+4
-2
src/share/vm/classfile/verifier.cpp
src/share/vm/classfile/verifier.cpp
+2
-6
未找到文件。
src/share/vm/classfile/verificationType.cpp
浏览文件 @
91eb5f17
...
...
@@ -70,7 +70,9 @@ bool VerificationType::is_reference_assignable_from(
}
else
if
(
is_array
()
&&
from
.
is_array
())
{
VerificationType
comp_this
=
get_component
(
CHECK_false
);
VerificationType
comp_from
=
from
.
get_component
(
CHECK_false
);
return
comp_this
.
is_assignable_from
(
comp_from
,
context
,
CHECK_false
);
if
(
!
comp_this
.
is_bogus
()
&&
!
comp_from
.
is_bogus
())
{
return
comp_this
.
is_assignable_from
(
comp_from
,
context
,
CHECK_false
);
}
}
return
false
;
}
...
...
@@ -98,7 +100,7 @@ VerificationType VerificationType::get_component(TRAPS) const {
CHECK_
(
VerificationType
::
bogus_type
()));
return
VerificationType
::
reference_type
(
component
);
default:
ShouldNotReachHere
();
// Met an invalid type signature, e.g. [X
return
VerificationType
::
bogus_type
();
}
}
...
...
src/share/vm/classfile/verifier.cpp
浏览文件 @
91eb5f17
...
...
@@ -1847,12 +1847,8 @@ void ClassVerifier::verify_invoke_init(
if
(
type
==
VerificationType
::
uninitialized_this_type
())
{
// The method must be an <init> method of either this class, or one of its
// superclasses
klassOop
oop
=
current_class
()();
Klass
*
klass
=
oop
->
klass_part
();
while
(
klass
!=
NULL
&&
ref_class_type
.
name
()
!=
klass
->
name
())
{
klass
=
klass
->
super
()
->
klass_part
();
}
if
(
klass
==
NULL
)
{
if
(
ref_class_type
.
name
()
!=
current_class
()
->
name
()
&&
!
name_in_supers
(
ref_class_type
.
name
(),
current_class
()))
{
verify_error
(
bci
,
"Bad <init> method call"
);
return
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录