mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2025-12-06 09:29:38 +01:00
8308192: Error in parsing replay file when staticfield is an array of single dimension
Reviewed-by: thartmann, kvn
(cherry picked from commit d3feedf511)
This commit is contained in:
committed by
Vitaly Provodin
parent
0c055f4dc6
commit
dc16767f05
@@ -1101,6 +1101,7 @@ class CompileReplay : public StackObj {
|
||||
value = oopFactory::new_longArray(length, CHECK);
|
||||
} else if (field_signature[0] == JVM_SIGNATURE_ARRAY &&
|
||||
field_signature[1] == JVM_SIGNATURE_CLASS) {
|
||||
parse_klass(CHECK); // eat up the array class name
|
||||
Klass* kelem = resolve_klass(field_signature + 1, CHECK);
|
||||
value = oopFactory::new_objArray(kelem, length, CHECK);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user