Skip to content

Commit f527289

Browse files
committedSep 14, 2021
8273639: tests fail with "assert(_handle_mark_nesting > 1) failed: memory leak: allocating handle outside HandleMark"
Reviewed-by: coleenp, dholmes
1 parent 1d2458d commit f527289

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/hotspot/share/services/heapDumper.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1862,7 +1862,10 @@ void VM_HeapDumper::dump_stack_traces() {
18621862
oop threadObj = thread->threadObj();
18631863
if (threadObj != NULL && !thread->is_exiting() && !thread->is_hidden_from_external_view()) {
18641864
// dump thread stack trace
1865-
ResourceMark rm;
1865+
Thread* current_thread = Thread::current();
1866+
ResourceMark rm(current_thread);
1867+
HandleMark hm(current_thread);
1868+
18661869
ThreadStackTrace* stack_trace = new ThreadStackTrace(thread, false);
18671870
stack_trace->dump_stack_at_safepoint(-1);
18681871
_stack_traces[_num_threads++] = stack_trace;

0 commit comments

Comments
 (0)
Please sign in to comment.