Re: RFR: JDK-8254843: Exception launching app on windows in some cases

2020-10-20 Thread Alexander Zuev
On Fri, 16 Oct 2020 17:59:14 GMT, Andy Herrick wrote: > JDK-8254843: Exception launching app on windows in some cases > loading splashscreen.dll in WinLaunchercpp would load java.dll from path > instead of runtime/bin causing jni launcher to > crash. instead we just use what used to be the fallb

Re: RFR: JDK-8254843: Exception launching app on windows in some cases

2020-10-19 Thread Andy Herrick
On Fri, 16 Oct 2020 23:31:24 GMT, Alexander Matveev wrote: >> JDK-8254843: Exception launching app on windows in some cases >> loading splashscreen.dll in WinLaunchercpp would load java.dll from path >> instead of runtime/bin causing jni launcher to >> crash. instead we just use what used to be

Re: RFR: JDK-8254843: Exception launching app on windows in some cases

2020-10-16 Thread Alexander Matveev
On Fri, 16 Oct 2020 17:59:14 GMT, Andy Herrick wrote: > JDK-8254843: Exception launching app on windows in some cases > loading splashscreen.dll in WinLaunchercpp would load java.dll from path > instead of runtime/bin causing jni launcher to > crash. instead we just use what used to be the fallb

Re: RFR: JDK-8254843: Exception launching app on windows in some cases

2020-10-16 Thread Kevin Rushforth
On Fri, 16 Oct 2020 17:59:14 GMT, Andy Herrick wrote: > JDK-8254843: Exception launching app on windows in some cases > loading splashscreen.dll in WinLaunchercpp would load java.dll from path > instead of runtime/bin causing jni launcher to > crash. instead we just use what used to be the fallb

Re: RFR: JDK-8254843: Exception launching app on windows in some cases

2020-10-16 Thread Alexey Semenyuk
On Fri, 16 Oct 2020 17:59:14 GMT, Andy Herrick wrote: > JDK-8254843: Exception launching app on windows in some cases > loading splashscreen.dll in WinLaunchercpp would load java.dll from path > instead of runtime/bin causing jni launcher to > crash. instead we just use what used to be the fallb

RFR: JDK-8254843: Exception launching app on windows in some cases

2020-10-16 Thread Andy Herrick
JDK-8254843: Exception launching app on windows in some cases loading splashscreen.dll in WinLaunchercpp would load java.dll from path instead of runtime/bin causing jni launcher to crash. instead we just use what used to be the fallback, using loadDllWithAddDllDirectory(). - Commit