Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8084603 | emb-9 | Roger Riggs | P2 | Resolved | Fixed | team |
ProcessBuilder.start spec says:
"SecurityException - if a security manager exists and
...
the standard input to the subprocess was redirected from a file and the security manager's checkRead method denies read access to the file, or
the standard output or standard error of the subprocess was redirected to a file and the security manager's checkWrite method denies write access to the file"
Where "checkRead" is link to the checkRead(FileDescriptor) and "checkWrite" is the link to the checkWrite(FileDescriptor) method. However, in fact the following methods is called: checkRead(String) and checkWrite(String).
Failed JCK test is under development.
"SecurityException - if a security manager exists and
...
the standard input to the subprocess was redirected from a file and the security manager's checkRead method denies read access to the file, or
the standard output or standard error of the subprocess was redirected to a file and the security manager's checkWrite method denies write access to the file"
Where "checkRead" is link to the checkRead(FileDescriptor) and "checkWrite" is the link to the checkWrite(FileDescriptor) method. However, in fact the following methods is called: checkRead(String) and checkWrite(String).
Failed JCK test is under development.
- backported by
-
JDK-8084603 (process spec) ProcessBuilder.start spec linked to the wrong checkRead and checkWrite methods
-
- Resolved
-