diff --git a/hotspot/src/share/vm/runtime/frame.hpp b/hotspot/src/share/vm/runtime/frame.hpp index 0b208d249d9..cbd63cd20b2 100644 --- a/hotspot/src/share/vm/runtime/frame.hpp +++ b/hotspot/src/share/vm/runtime/frame.hpp @@ -442,6 +442,14 @@ class FrameValue VALUE_OBJ_CLASS_SPEC { char* description; int owner; int priority; + + FrameValue() { + location = NULL; + description = NULL; + owner = -1; + priority = 0; + } + };