提交 b322627e 编写于 作者: A acorn

8026185: nsk/jvmit/GetMethodDeclaringClass/declcls001 failed

Summary: Missed initialization. Thanks Coleen.
Reviewed-by: coleenp, minqi
上级 d213e7bb
...@@ -1458,7 +1458,7 @@ Method* InstanceKlass::uncached_lookup_method(Symbol* name, Symbol* signature) c ...@@ -1458,7 +1458,7 @@ Method* InstanceKlass::uncached_lookup_method(Symbol* name, Symbol* signature) c
// Do NOT return private or static methods // Do NOT return private or static methods
Method* InstanceKlass::lookup_method_in_ordered_interfaces(Symbol* name, Method* InstanceKlass::lookup_method_in_ordered_interfaces(Symbol* name,
Symbol* signature) const { Symbol* signature) const {
Method* m; Method* m = NULL;
if (default_methods() != NULL) { if (default_methods() != NULL) {
m = find_method(default_methods(), name, signature); m = find_method(default_methods(), name, signature);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册