hotspot/src/share/vm/prims/jvmtiEnv.cpp
changeset 37220 ec74292c0c9c
parent 37179 4dbcb3a642d2
child 37993 e446184da25e
--- a/hotspot/src/share/vm/prims/jvmtiEnv.cpp	Thu Mar 31 14:18:25 2016 +0000
+++ b/hotspot/src/share/vm/prims/jvmtiEnv.cpp	Thu Mar 31 10:42:57 2016 -0700
@@ -476,7 +476,7 @@
     // terminating the VM so we check one more time.
 
     // create the zip entry
-    ClassPathZipEntry* zip_entry = ClassLoader::create_class_path_zip_entry(segment);
+    ClassPathZipEntry* zip_entry = ClassLoader::create_class_path_zip_entry(segment, true);
     if (zip_entry == NULL) {
       return JVMTI_ERROR_ILLEGAL_ARGUMENT;
     }
@@ -520,7 +520,7 @@
 
     // create the zip entry (which will open the zip file and hence
     // check that the segment is indeed a zip file).
-    ClassPathZipEntry* zip_entry = ClassLoader::create_class_path_zip_entry(segment);
+    ClassPathZipEntry* zip_entry = ClassLoader::create_class_path_zip_entry(segment, false);
     if (zip_entry == NULL) {
       return JVMTI_ERROR_ILLEGAL_ARGUMENT;
     }