OpenJDK / bsd-port / jdk9 / hotspot
changeset 8720:5c80bd3aab91
Merge
author | coleenp |
---|---|
date | Sat, 18 Jul 2015 01:55:38 +0200 |
parents | a02747e8bc4c 07d37d29e3da |
children | b184c541b244 |
files | |
diffstat | 2 files changed, 10 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/share/vm/classfile/classFileParser.cpp Fri Jul 17 19:40:21 2015 -0400 +++ b/src/share/vm/classfile/classFileParser.cpp Sat Jul 18 01:55:38 2015 +0200 @@ -2023,10 +2023,10 @@ bool lvt_allocated = false; u2 max_lvt_cnt = INITIAL_MAX_LVT_NUMBER; u2 max_lvtt_cnt = INITIAL_MAX_LVT_NUMBER; - u2* localvariable_table_length; - u2** localvariable_table_start; - u2* localvariable_type_table_length; - u2** localvariable_type_table_start; + u2* localvariable_table_length = NULL; + u2** localvariable_table_start = NULL; + u2* localvariable_type_table_length = NULL; + u2** localvariable_type_table_start = NULL; int method_parameters_length = -1; u1* method_parameters_data = NULL; bool method_parameters_seen = false;
--- a/src/share/vm/runtime/rframe.cpp Fri Jul 17 19:40:21 2015 -0400 +++ b/src/share/vm/runtime/rframe.cpp Sat Jul 18 01:55:38 2015 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -81,7 +81,7 @@ : InterpretedRFrame(fr, thread, callee) {} RFrame* RFrame::new_RFrame(frame fr, JavaThread* thread, RFrame*const callee) { - RFrame* rf; + RFrame* rf = NULL; int dist = callee ? callee->distance() : -1; if (fr.is_interpreted_frame()) { rf = new InterpretedRFrame(fr, thread, callee); @@ -93,8 +93,10 @@ } else { assert(false, "Unhandled frame type"); } - rf->set_distance(dist); - rf->init(); + if (rf != NULL) { + rf->set_distance(dist); + rf->init(); + } return rf; }