Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit db8757a

Browse files
author
Daniil Titov
committedApr 20, 2020
8231585: java/lang/management/ThreadMXBean/MaxDepthForThreadInfoTest.java fails with java.lang.NullPointerException
Reviewed-by: dholmes, cjplummer, sspitsyn
1 parent da1abd1 commit db8757a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎test/jdk/java/lang/management/ThreadMXBean/MaxDepthForThreadInfoTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -47,7 +47,7 @@ public static void main(String[] Args) {
4747

4848
ThreadInfo[] tinfos = tmxb.getThreadInfo(threadIds, true, true, 0);
4949
for (ThreadInfo ti : tinfos) {
50-
if (ti.getStackTrace().length > 0) {
50+
if (ti != null && ti.getStackTrace().length > 0) {
5151
ThreadDump.printThreadInfo(ti);
5252
throw new RuntimeException("more than requested " +
5353
"number of frames dumped");
@@ -56,7 +56,7 @@ public static void main(String[] Args) {
5656

5757
tinfos = tmxb.getThreadInfo(threadIds, true, true, 3);
5858
for (ThreadInfo ti : tinfos) {
59-
if (ti.getStackTrace().length > 3) {
59+
if (ti != null && ti.getStackTrace().length > 3) {
6060
ThreadDump.printThreadInfo(ti);
6161
throw new RuntimeException("more than requested " +
6262
"number of frames dumped");

0 commit comments

Comments
 (0)
This repository has been archived.