http://forge.ow2.org/tracker/?func=detail&aid=317578&group_id=23&atid=100023
(cherry picked from commit 0c2b787)
This commit is contained in:
Juergen Hoeller
2015-08-27 22:03:36 +02:00
parent f562eb5ff6
commit 8daa932e69

View File

@@ -2032,7 +2032,7 @@ class MethodWriter extends MethodVisitor {
}
int size = 8;
if (code.length > 0) {
if (code.length > 65536) {
if (code.length > 65535) {
throw new RuntimeException("Method code too large!");
}
cw.newUTF8("Code");