hotspot/src/share/vm/runtime/frame.hpp
changeset 33614 6ca1ebbf0dc1
parent 33063 9e222337a81e
child 37466 287c4ebd11b0
--- a/hotspot/src/share/vm/runtime/frame.hpp	Wed Oct 14 14:51:10 2015 +0200
+++ b/hotspot/src/share/vm/runtime/frame.hpp	Wed Oct 28 21:47:31 2015 +0300
@@ -442,6 +442,14 @@
   char* description;
   int owner;
   int priority;
+
+  FrameValue() {
+    location = NULL;
+    description = NULL;
+    owner = -1;
+    priority = 0;
+  }
+
 };