ASM fix #317578
http://forge.ow2.org/tracker/?func=detail&aid=317578&group_id=23&atid=100023
This commit is contained in:
parent
803d7b50b9
commit
0c2b787cb5
|
|
@ -2032,7 +2032,7 @@ class MethodWriter extends MethodVisitor {
|
||||||
}
|
}
|
||||||
int size = 8;
|
int size = 8;
|
||||||
if (code.length > 0) {
|
if (code.length > 0) {
|
||||||
if (code.length > 65536) {
|
if (code.length > 65535) {
|
||||||
throw new RuntimeException("Method code too large!");
|
throw new RuntimeException("Method code too large!");
|
||||||
}
|
}
|
||||||
cw.newUTF8("Code");
|
cw.newUTF8("Code");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue