OpenJDK / amber / amber
changeset 57329:e0f5ad90737c
8216381: More limited privilege usage
Reviewed-by: ahgross, coffeys, rhalade
author | mullan |
---|---|
date | Thu, 07 Feb 2019 08:47:10 -0500 |
parents | 04cccf60fe44 |
children | e29d7fea0e4d |
files | src/java.base/share/classes/java/security/AccessController.java |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/java.base/share/classes/java/security/AccessController.java Wed Jan 30 14:14:57 2019 +0000 +++ b/src/java.base/share/classes/java/security/AccessController.java Thu Feb 07 08:47:10 2019 -0500 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -445,7 +445,8 @@ throw new NullPointerException("null permissions parameter"); } Class<?> caller = Reflection.getCallerClass(); - return AccessController.doPrivileged(action, createWrapper(null, + DomainCombiner dc = (context == null) ? null : context.getCombiner(); + return AccessController.doPrivileged(action, createWrapper(dc, caller, parent, context, perms)); } @@ -860,7 +861,8 @@ throw new NullPointerException("null permissions parameter"); } Class<?> caller = Reflection.getCallerClass(); - return AccessController.doPrivileged(action, createWrapper(null, caller, parent, context, perms)); + DomainCombiner dc = (context == null) ? null : context.getCombiner(); + return AccessController.doPrivileged(action, createWrapper(dc, caller, parent, context, perms)); }