Skip to content

Commit

Permalink
(WIP) fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed May 19, 2021
1 parent 25cdae7 commit 99544ea
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -87,7 +87,8 @@ boolean match(final AbstractInsnNode start,
break;
}
nextIs(Opcodes.GOTO);
if (((JumpInsnNode) cursor).label != secondSwitchLabel) {
if (cursor == null
|| ((JumpInsnNode) cursor).label != secondSwitchLabel) {
return false;
}
}
Expand Down

0 comments on commit 99544ea

Please sign in to comment.