Merge
authorcoleenp
Wed, 28 Oct 2015 23:29:21 +0100
changeset 33618 c89e098003b6
parent 33615 c8116ce58d71 (diff)
parent 33617 ba5e8f66173f (current diff)
child 33621 ba9cc1d8cc1f
Merge
--- 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;
+  }
+
 };