Skip to content

Commit 7b9d256

Browse files
committedMar 17, 2021
8261262: Kitchensink24HStress.java crashed with EXCEPTION_ACCESS_VIOLATION
Reviewed-by: dcubed, sspitsyn
1 parent d2144a5 commit 7b9d256

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed
 

‎src/hotspot/share/prims/jvmtiEnvThreadState.cpp

+7-10
Original file line numberDiff line numberDiff line change
@@ -258,19 +258,16 @@ class GetCurrentLocationClosure : public HandshakeClosure {
258258
JavaThread *jt = target->as_Java_thread();
259259
ResourceMark rmark; // jt != Thread::current()
260260
RegisterMap rm(jt, false);
261-
// There can be a race condition between a VM_Operation reaching a safepoint
261+
// There can be a race condition between a handshake
262262
// and the target thread exiting from Java execution.
263-
// We must recheck the last Java frame still exists.
263+
// We must recheck that the last Java frame still exists.
264264
if (!jt->is_exiting() && jt->has_last_Java_frame()) {
265265
javaVFrame* vf = jt->last_java_vframe(&rm);
266-
assert(vf != NULL, "must have last java frame");
267-
Method* method = vf->method();
268-
_method_id = method->jmethod_id();
269-
_bci = vf->bci();
270-
} else {
271-
// Clear current location as the target thread has no Java frames anymore.
272-
_method_id = (jmethodID)NULL;
273-
_bci = 0;
266+
if (vf != NULL) {
267+
Method* method = vf->method();
268+
_method_id = method->jmethod_id();
269+
_bci = vf->bci();
270+
}
274271
}
275272
_completed = true;
276273
}

0 commit comments

Comments
 (0)
Please sign in to comment.