8138960: Module version is checked incorrectly in libjimage
Reviewed-by: alanb, mchung, iris
Contributed-by: james.laskey@oracle.com
--- a/jdk/src/java.base/share/native/libjimage/jimage.cpp Tue Oct 06 08:42:20 2015 -0700
+++ b/jdk/src/java.base/share/native/libjimage/jimage.cpp Tue Oct 06 13:49:41 2015 -0300
@@ -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];