hotspot/src/share/vm/runtime/perfData.cpp
changeset 27880 afb974a04396
parent 24424 2658d7834c6e
child 32614 b7b2407bc7e5
--- a/hotspot/src/share/vm/runtime/perfData.cpp	Fri Nov 28 16:33:57 2014 +0100
+++ b/hotspot/src/share/vm/runtime/perfData.cpp	Mon Dec 01 12:16:15 2014 -0500
@@ -113,10 +113,10 @@
 
 PerfData::~PerfData() {
   if (_name != NULL) {
-    FREE_C_HEAP_ARRAY(char, _name, mtInternal);
+    FREE_C_HEAP_ARRAY(char, _name);
   }
   if (is_on_c_heap()) {
-    FREE_C_HEAP_ARRAY(PerfDataEntry, _pdep, mtInternal);
+    FREE_C_HEAP_ARRAY(PerfDataEntry, _pdep);
   }
 }