@@ -2256,7 +2256,7 @@ void* os::win32::install_signal_handler(int sig, signal_handler_t handler) {
2256
2256
sigbreakHandler = handler;
2257
2257
return oldHandler;
2258
2258
} else {
2259
- return ::signal (sig, handler);
2259
+ return CAST_FROM_FN_PTR ( void *, ::signal (sig, handler) );
2260
2260
}
2261
2261
}
2262
2262
@@ -2909,22 +2909,23 @@ LONG WINAPI topLevelVectoredExceptionFilter(struct _EXCEPTION_POINTERS* exceptio
2909
2909
2910
2910
#if defined(USE_VECTORED_EXCEPTION_HANDLING)
2911
2911
LONG WINAPI topLevelUnhandledExceptionFilter (struct _EXCEPTION_POINTERS * exceptionInfo) {
2912
- if (InterceptOSException) goto exit ;
2913
- DWORD exception_code = exceptionInfo->ExceptionRecord ->ExceptionCode ;
2912
+ if (! InterceptOSException) {
2913
+ DWORD exceptionCode = exceptionInfo->ExceptionRecord ->ExceptionCode ;
2914
2914
#if defined(_M_ARM64)
2915
- address pc = (address)exceptionInfo->ContextRecord ->Pc ;
2915
+ address pc = (address) exceptionInfo->ContextRecord ->Pc ;
2916
2916
#elif defined(_M_AMD64)
2917
- address pc = (address) exceptionInfo->ContextRecord ->Rip ;
2917
+ address pc = (address) exceptionInfo->ContextRecord ->Rip ;
2918
2918
#else
2919
- address pc = (address) exceptionInfo->ContextRecord ->Eip ;
2919
+ address pc = (address) exceptionInfo->ContextRecord ->Eip ;
2920
2920
#endif
2921
- Thread* t = Thread::current_or_null_safe ();
2921
+ Thread* thread = Thread::current_or_null_safe ();
2922
2922
2923
- if (exception_code != EXCEPTION_BREAKPOINT) {
2924
- report_error (t, exception_code, pc, exceptionInfo->ExceptionRecord ,
2925
- exceptionInfo->ContextRecord );
2923
+ if (exceptionCode != EXCEPTION_BREAKPOINT) {
2924
+ report_error (thread, exceptionCode, pc, exceptionInfo->ExceptionRecord ,
2925
+ exceptionInfo->ContextRecord );
2926
+ }
2926
2927
}
2927
- exit :
2928
+
2928
2929
return previousUnhandledExceptionFilter ? previousUnhandledExceptionFilter (exceptionInfo) : EXCEPTION_CONTINUE_SEARCH;
2929
2930
}
2930
2931
#endif
0 commit comments