Skip to content

Commit 6aec6f3

Browse files
author
Matias Saavedra Silva
committedMar 27, 2023
8304931: vm/concepts/methods/methods001/methods00101m1/methods00101m1 failures with already pending exception
Reviewed-by: coleenp, dholmes
1 parent 63ce88b commit 6aec6f3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/hotspot/share/classfile/classFileParser.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -866,6 +866,7 @@ void ClassFileParser::parse_interfaces(const ClassFileStream* const stream,
866866
if (!interface_names->put(interface_name, 0)) {
867867
classfile_parse_error("Duplicate interface name \"%s\" in class file %s",
868868
interface_name->as_C_string(), THREAD);
869+
return;
869870
}
870871
}
871872
}
@@ -1594,6 +1595,7 @@ void ClassFileParser::parse_fields(const ClassFileStream* const cfs,
15941595
if(!names_and_sigs->put(name_and_sig, 0)) {
15951596
classfile_parse_error("Duplicate field name \"%s\" with signature \"%s\" in class file %s",
15961597
name_and_sig._name->as_C_string(), name_and_sig._sig->as_klass_external_name(), THREAD);
1598+
return;
15971599
}
15981600
}
15991601
}
@@ -2833,6 +2835,7 @@ void ClassFileParser::parse_methods(const ClassFileStream* const cfs,
28332835
if(!names_and_sigs->put(name_and_sig, 0)) {
28342836
classfile_parse_error("Duplicate method name \"%s\" with signature \"%s\" in class file %s",
28352837
name_and_sig._name->as_C_string(), name_and_sig._sig->as_klass_external_name(), THREAD);
2838+
return;
28362839
}
28372840
}
28382841
}

0 commit comments

Comments
 (0)
Please sign in to comment.