Skip to content

Commit

Permalink
[BUGFIX] Suppress errors in symbol search
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Feb 8, 2025
1 parent 5877738 commit b38b5a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/process_symbols.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ProcessSymbolsManager
if (!isInit) {
hProcess = _hProcess;

SymSetOptions(SYMOPT_INCLUDE_32BIT_MODULES | SYMOPT_UNDNAME | SYMOPT_DEFERRED_LOADS);
SymSetOptions(SYMOPT_INCLUDE_32BIT_MODULES | SYMOPT_UNDNAME | SYMOPT_DEFERRED_LOADS | SYMOPT_FAIL_CRITICAL_ERRORS);
if (SymInitialize(hProcess, NULL, TRUE)) {
isInit = true;
}
Expand Down

0 comments on commit b38b5a4

Please sign in to comment.