mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8320679: [JVMCI] invalid code in PushLocalFrame event message
Reviewed-by: never
This commit is contained in:
parent
c75c38871e
commit
df1b896e01
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ void JVMCIEnv::init_env_mode_runtime(JavaThread* thread, JNIEnv* parent_env) {
|
||||||
JNIAccessMark jni(this, thread);
|
JNIAccessMark jni(this, thread);
|
||||||
jint result = _env->PushLocalFrame(32);
|
jint result = _env->PushLocalFrame(32);
|
||||||
if (result != JNI_OK) {
|
if (result != JNI_OK) {
|
||||||
JVMCI_event_1("[%s:%d] Error pushing local JNI frame (err: %d)", _file, _line, _init_error);
|
JVMCI_event_1("[%s:%d] Error pushing local JNI frame (err: %d)", _file, _line, result);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_pop_frame_on_close = true;
|
_pop_frame_on_close = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue