8138987: Module version is checked incorrectly in libjimage (verona)
authoriris
Tue, 06 Oct 2015 10:55:12 -0700
changeset 34008 17051561bbaf
parent 34007 40862bd65a78
child 34009 b967d9c21d46
8138987: Module version is checked incorrectly in libjimage (verona) Reviewed-by: alanb, mchung, iris Contributed-by: james.laskey@oracle.com
jdk/src/java.base/share/native/libjimage/jimage.cpp
--- a/jdk/src/java.base/share/native/libjimage/jimage.cpp	Mon Oct 05 20:55:53 2015 -0700
+++ b/jdk/src/java.base/share/native/libjimage/jimage.cpp	Tue Oct 06 10:55:12 2015 -0700
@@ -29,8 +29,6 @@
 
 #include "imageFile.hpp"
 
-#define BOOT_VERSION "9.0"
-
 /*
  * JImageOpen - Given the supplied full path file name, open an image file. This
  * function will also initialize tables and retrieve meta-data necessary to
@@ -104,10 +102,6 @@
 extern "C" JImageLocationRef JIMAGE_FindResource(JImageFile* image,
         const char* module_name, const char* version, const char* name,
         jlong* size) {
-    if (strcmp(version, BOOT_VERSION) != 0) {
-        return (JImageLocationRef) 0;
-    }
-
     ImageLocation location;
     char fullpath[IMAGE_MAX_PATH];