back out for now

This commit is contained in:
Rick V 2019-06-20 04:50:47 -05:00
parent 578bcba73d
commit 581e64a2ef
No known key found for this signature in database
GPG Key ID: C0EDC8723FDC3465
2 changed files with 3 additions and 1 deletions

View File

@ -117,7 +117,7 @@ main(int argc, char *argv[])
if(startWinsock())
return -1;
SetConsoleCtrlHandler(handle_signal_win32, TRUE);
SetUnhandledExceptionFilter(win32_signal_handler);
//SetUnhandledExceptionFilter(win32_signal_handler);
#endif
#ifdef LOKINET_DEBUG

View File

@ -572,6 +572,7 @@ SetThreadName(DWORD dwThreadID, LPCSTR szThreadName)
#endif
#ifdef _WIN32
#if 0
// Generate a core dump if we crash. Finally.
// Unix-style, we just leave a file named "core" in
// the user's working directory. Gets overwritten if
@ -673,4 +674,5 @@ __declspec(noreturn) LONG FAR PASCAL win32_signal_handler(EXCEPTION_POINTERS *e)
exit(127);
return 0;
}
#endif
#endif