# HG changeset patch # User coleenp # Date 1446071361 -3600 # Node ID c89e098003b6b7b809c1f91b2b8208570ba97bd1 # Parent c8116ce58d710aed239b50b76fbb9236c58b6fbe# Parent ba5e8f66173f3912c17a66c11bba14357aa09fba Merge diff -r ba5e8f66173f -r c89e098003b6 hotspot/src/share/vm/runtime/frame.hpp --- a/hotspot/src/share/vm/runtime/frame.hpp Wed Oct 28 20:30:03 2015 +0100 +++ b/hotspot/src/share/vm/runtime/frame.hpp Wed Oct 28 23:29:21 2015 +0100 @@ -442,6 +442,14 @@ char* description; int owner; int priority; + + FrameValue() { + location = NULL; + description = NULL; + owner = -1; + priority = 0; + } + };