We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3cd7af commit 2ac4355Copy full SHA for 2ac4355
spring-core/src/main/java/org/springframework/asm/ClassReader.java
@@ -2437,6 +2437,11 @@ private void readCode(
2437
* @return a non null Label, which must be equal to labels[bytecodeOffset].
2438
*/
2439
protected Label readLabel(final int bytecodeOffset, final Label[] labels) {
2440
+ // SPRING PATCH: leniently handle offset mismatch
2441
+ if (bytecodeOffset >= labels.length) {
2442
+ return new Label();
2443
+ }
2444
+ // END OF PATCH
2445
if (labels[bytecodeOffset] == null) {
2446
labels[bytecodeOffset] = new Label();
2447
}
0 commit comments