EXCEPTION_EXECUTE_HANDLER -> EXCEPTION_CONTINUE_SEARCH

This commit is contained in:
Marvin D 2022-12-23 03:19:43 +01:00
parent 37a50c92b8
commit bd2cc9f4b3

View File

@ -129,7 +129,7 @@ long __stdcall ExceptionFilter(EXCEPTION_POINTERS* exceptionInfo)
// If you are debugging you don't need this.
if (IsDebuggerPresent())
return EXCEPTION_EXECUTE_HANDLER;
return EXCEPTION_CONTINUE_SEARCH;
// Goodluck on you if you somehow hit a guard page.
if (g_ExceptionToString.find(exceptionInfo->ExceptionRecord->ExceptionCode) == g_ExceptionToString.end())