mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8080928: Uninitialised variable in hotspot/src/share/vm/prims/jvmtiEnvBase.cpp
Reviewed-by: mgronlun, sspitsyn
This commit is contained in:
parent
80d98f560a
commit
b1388f39a9
1 changed files with 1 additions and 1 deletions
|
@ -842,7 +842,7 @@ JvmtiEnvBase::get_stack_trace(JavaThread *java_thread,
|
||||||
// optimize to limit the number of times that java_sender() is called
|
// optimize to limit the number of times that java_sender() is called
|
||||||
javaVFrame *jvf_cursor = jvf;
|
javaVFrame *jvf_cursor = jvf;
|
||||||
javaVFrame *jvf_prev = NULL;
|
javaVFrame *jvf_prev = NULL;
|
||||||
javaVFrame *jvf_prev_prev;
|
javaVFrame *jvf_prev_prev = NULL;
|
||||||
int j = 0;
|
int j = 0;
|
||||||
while (jvf_cursor != NULL) {
|
while (jvf_cursor != NULL) {
|
||||||
jvf_prev_prev = jvf_prev;
|
jvf_prev_prev = jvf_prev;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue