1
1
/*
2
- * Copyright (c) 1997, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1997, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -49,10 +49,6 @@ static jboolean GetJVMPath(const char *jrepath, const char *jvmtype,
49
49
char * jvmpath , jint jvmpathsize );
50
50
static jboolean GetJREPath (char * path , jint pathsize );
51
51
52
- #ifdef USE_REGISTRY_LOOKUP
53
- jboolean GetPublicJREHome (char * buf , jint bufsize );
54
- #endif
55
-
56
52
/* We supports warmup for UI stack that is performed in parallel
57
53
* to VM initialization.
58
54
* This helps to improve startup of UI application as warmup phase
@@ -300,27 +296,19 @@ GetJREPath(char *path, jint pathsize)
300
296
char javadll [MAXPATHLEN ];
301
297
struct stat s ;
302
298
299
+ JLI_TraceLauncher ("Attempt to get JRE path from launcher executable path\n" );
300
+
303
301
if (GetApplicationHome (path , pathsize )) {
304
302
/* Is JRE co-located with the application? */
305
303
JLI_Snprintf (javadll , sizeof (javadll ), "%s\\bin\\" JAVA_DLL , path );
306
304
if (stat (javadll , & s ) == 0 ) {
307
305
JLI_TraceLauncher ("JRE path is %s\n" , path );
308
306
return JNI_TRUE ;
309
307
}
310
- /* ensure storage for path + \jre + NULL */
311
- if ((JLI_StrLen (path ) + 4 + 1 ) > (size_t ) pathsize ) {
312
- JLI_TraceLauncher ("Insufficient space to store JRE path\n" );
313
- return JNI_FALSE ;
314
- }
315
- /* Does this app ship a private JRE in <apphome>\jre directory? */
316
- JLI_Snprintf (javadll , sizeof (javadll ), "%s\\jre\\bin\\" JAVA_DLL , path );
317
- if (stat (javadll , & s ) == 0 ) {
318
- JLI_StrCat (path , "\\jre" );
319
- JLI_TraceLauncher ("JRE path is %s\n" , path );
320
- return JNI_TRUE ;
321
- }
322
308
}
323
309
310
+ JLI_TraceLauncher ("Attempt to get JRE path from shared lib of the image\n" );
311
+
324
312
/* Try getting path to JRE from path to JLI.DLL */
325
313
if (GetApplicationHomeFromDll (path , pathsize )) {
326
314
JLI_Snprintf (javadll , sizeof (javadll ), "%s\\bin\\" JAVA_DLL , path );
@@ -330,14 +318,6 @@ GetJREPath(char *path, jint pathsize)
330
318
}
331
319
}
332
320
333
- #ifdef USE_REGISTRY_LOOKUP
334
- /* Lookup public JRE using Windows registry. */
335
- if (GetPublicJREHome (path , pathsize )) {
336
- JLI_TraceLauncher ("JRE path is %s\n" , path );
337
- return JNI_TRUE ;
338
- }
339
- #endif
340
-
341
321
JLI_ReportErrorMessage (JRE_ERROR8 JAVA_DLL );
342
322
return JNI_FALSE ;
343
323
}
0 commit comments