OpenJDK / jdk / jdk10
changeset 25824:ea1f7997ebb2
8051839: GuardedInvocation needs to clone an argument
Reviewed-by: hannesw, sundar
author | attila |
---|---|
date | Wed, 30 Jul 2014 10:06:42 -0700 |
parents | 848259b39472 |
children | b97d77f4b98e |
files | nashorn/src/jdk/internal/dynalink/linker/GuardedInvocation.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/nashorn/src/jdk/internal/dynalink/linker/GuardedInvocation.java Wed Jul 30 16:49:02 2014 +0400 +++ b/nashorn/src/jdk/internal/dynalink/linker/GuardedInvocation.java Wed Jul 30 10:06:42 2014 -0700 @@ -193,7 +193,7 @@ invocation.getClass(); // NPE check this.invocation = invocation; this.guard = guard; - this.switchPoints = switchPoints; + this.switchPoints = switchPoints == null ? null : switchPoints.clone(); this.exception = exception; }