We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91a0b99 commit 38f1ca2Copy full SHA for 38f1ca2
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/jdk/SecuritySubstitutions.java
@@ -118,9 +118,7 @@ static AccessControlContext getStackAccessControlContext() {
118
* PrintWriter/Logging is available yet. This manifested when
119
* UseDedicatedVMOperationThread hosted option was set, triggering a runtime crash.
120
*/
121
- Permissions perms = new Permissions();
122
- perms.add(SecurityConstants.ALL_PERMISSION);
123
- return new AccessControlContext(new ProtectionDomain[]{new ProtectionDomain(null, perms)});
+ return null;
124
}
125
return StackAccessControlContextVisitor.getFromStack();
126
0 commit comments