hotspot/src/share/vm/classfile/classLoader.cpp
changeset 27880 afb974a04396
parent 27618 790a8bf5488b
child 27883 3179632c8f66
--- a/hotspot/src/share/vm/classfile/classLoader.cpp	Fri Nov 28 16:33:57 2014 +0100
+++ b/hotspot/src/share/vm/classfile/classLoader.cpp	Mon Dec 01 12:16:15 2014 -0500
@@ -161,7 +161,7 @@
 
 
 MetaIndex::~MetaIndex() {
-  FREE_C_HEAP_ARRAY(char*, _meta_package_names, mtClass);
+  FREE_C_HEAP_ARRAY(char*, _meta_package_names);
 }
 
 
@@ -247,7 +247,7 @@
   if (ZipClose != NULL) {
     (*ZipClose)(_zip);
   }
-  FREE_C_HEAP_ARRAY(char, _zip_name, mtClass);
+  FREE_C_HEAP_ARRAY(char, _zip_name);
 }
 
 u1* ClassPathZipEntry::open_entry(const char* name, jint* filesize, bool nul_terminate, TRAPS) {