hotspot/src/share/vm/prims/unsafe.cpp
changeset 27880 afb974a04396
parent 27874 e9b44eb1613f
child 27883 3179632c8f66
--- a/hotspot/src/share/vm/prims/unsafe.cpp	Fri Nov 28 16:33:57 2014 +0100
+++ b/hotspot/src/share/vm/prims/unsafe.cpp	Mon Dec 01 12:16:15 2014 -0500
@@ -898,10 +898,10 @@
     result = JVM_DefineClass(env, utfName, loader, body, length, pd);
 
     if (utfName && utfName != buf)
-        FREE_C_HEAP_ARRAY(char, utfName, mtInternal);
+        FREE_C_HEAP_ARRAY(char, utfName);
 
  free_body:
-    FREE_C_HEAP_ARRAY(jbyte, body, mtInternal);
+    FREE_C_HEAP_ARRAY(jbyte, body);
     return result;
   }
 }
@@ -1086,7 +1086,7 @@
 
   // try/finally clause:
   if (temp_alloc != NULL) {
-    FREE_C_HEAP_ARRAY(HeapWord, temp_alloc, mtInternal);
+    FREE_C_HEAP_ARRAY(HeapWord, temp_alloc);
   }
 
   // The anonymous class loader data has been artificially been kept alive to