Skip to content

Commit 971c2ef

Browse files
author
Serguei Spitsyn
committedJun 30, 2023
8303086: SIGSEGV in JavaThread::is_interp_only_mode()
Reviewed-by: pchilanomate, cjplummer, lmesnik
1 parent f6bdccb commit 971c2ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ JvmtiEnv::SetEventNotificationMode(jvmtiEventMode mode, jvmtiEvent event_type, j
575575
if (event_type == JVMTI_EVENT_CLASS_FILE_LOAD_HOOK && enabled) {
576576
record_class_file_load_hook_enabled();
577577
}
578-
JvmtiVTMSTransitionDisabler disabler(event_thread);
578+
JvmtiVTMSTransitionDisabler disabler;
579579

580580
if (event_thread == nullptr) {
581581
// Can be called at Agent_OnLoad() time with event_thread == nullptr

0 commit comments

Comments
 (0)
Please sign in to comment.