Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
b08122a7
Commit
b08122a7
authored
Nov 10, 2002
by
Tom Tromey
Committed by
Tom Tromey
Nov 10, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* jni.cc (_Jv_GetJNIEnvNewFrame): Set env->ex in all cases.
From-SVN: r58971
parent
e9986d3a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
libjava/ChangeLog
+4
-0
libjava/jni.cc
+4
-2
No files found.
libjava/ChangeLog
View file @
b08122a7
2002
-
11
-
10
Tom
Tromey
<
tromey
@
redhat
.
com
>
*
jni
.
cc
(
_Jv_GetJNIEnvNewFrame
):
Set
env
->
ex
in
all
cases
.
2002
-
11
-
09
Tom
Tromey
<
tromey
@
redhat
.
com
>
*
java
/
applet
/
Applet
.
java
,
java
/
applet
/
AppletContext
.
java
,
...
...
libjava/jni.cc
View file @
b08122a7
...
...
@@ -1984,9 +1984,9 @@ _Jv_GetJNIEnvNewFrame (jclass klass)
{
env
=
(
JNIEnv
*
)
_Jv_MallocUnchecked
(
sizeof
(
JNIEnv
));
env
->
p
=
&
_Jv_JNIFunctions
;
env
->
ex
=
NULL
;
env
->
klass
=
klass
;
env
->
locals
=
NULL
;
// We set env->ex below.
_Jv_SetCurrentJNIEnv
(
env
);
}
...
...
@@ -1999,11 +1999,13 @@ _Jv_GetJNIEnvNewFrame (jclass klass)
frame
->
marker
=
MARK_SYSTEM
;
frame
->
size
=
FRAME_SIZE
;
frame
->
next
=
env
->
locals
;
env
->
locals
=
frame
;
for
(
int
i
=
0
;
i
<
frame
->
size
;
++
i
)
frame
->
vec
[
i
]
=
NULL
;
env
->
locals
=
frame
;
env
->
ex
=
NULL
;
return
env
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment