msvcrt: Don't set unhandled exception filter, XcptFilter is responsible for handling signals.

This commit is contained in:
Piotr Caban 2013-03-05 11:05:32 +01:00 committed by Alexandre Julliard
parent 8e5bebe262
commit 62e00e527f
1 changed files with 0 additions and 2 deletions

View File

@ -152,13 +152,11 @@ static LONG WINAPI msvcrt_exception_filter(struct _EXCEPTION_POINTERS *except)
void msvcrt_init_signals(void)
{
SetConsoleCtrlHandler(msvcrt_console_handler, TRUE);
SetUnhandledExceptionFilter(msvcrt_exception_filter);
}
void msvcrt_free_signals(void)
{
SetConsoleCtrlHandler(msvcrt_console_handler, FALSE);
SetUnhandledExceptionFilter(NULL);
}
/*********************************************************************