Merge pull request #468 from sherief/exception-handler-fix

Windows exception handler allows other handlers to be called.
This commit is contained in:
Bartosz Taudul 2022-09-15 11:33:39 +02:00 committed by GitHub
commit aa017e6a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -843,8 +843,6 @@ LONG WINAPI CrashFilter( PEXCEPTION_POINTERS pExp )
GetProfiler().RequestShutdown();
while( !GetProfiler().HasShutdownFinished() ) { std::this_thread::sleep_for( std::chrono::milliseconds( 10 ) ); };
TerminateProcess( GetCurrentProcess(), 1 );
return EXCEPTION_CONTINUE_SEARCH;
}
#endif