8051839: GuardedInvocation needs to clone an argument

Reviewed-by: hannesw, sundar
This commit is contained in:
Attila Szegedi 2014-07-30 10:06:42 -07:00
parent ce3b922118
commit d8c8841e2a

@ -193,7 +193,7 @@ public class GuardedInvocation {
invocation.getClass(); // NPE check
this.invocation = invocation;
this.guard = guard;
this.switchPoints = switchPoints;
this.switchPoints = switchPoints == null ? null : switchPoints.clone();
this.exception = exception;
}