Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8081935 | emb-9 | Igor Ignatyev | P5 | Resolved | Fixed | b64 |
Executing the following code crashes the VM with a segmentation fault. The whitebox API functions should be more stable. In this case a NullPointerException should be thrown.
public class Test {
private static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox();
static public void main(String[] args) {
WHITE_BOX.isMethodCompiled(null);
}
}
public class Test {
private static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox();
static public void main(String[] args) {
WHITE_BOX.isMethodCompiled(null);
}
}
- backported by
-
JDK-8081935 Make whitebox API functions more stable
-
- Resolved
-