Skip to content

Commit

Permalink
Prevent scanning of debug files from the current working directory on…
Browse files Browse the repository at this point in the history
… Windows (#38085)

Fixes #36911

[SymSetOptions](https://docs.microsoft.com/en-us/windows/win32/api/dbghelp/nf-dbghelp-symsetoptions) docs say this about SYMOPT_IGNORE_CVREC:
> Ignore path information in the CodeView record of the image header when loading a .pdb file.
  • Loading branch information
jaakkor2 committed Oct 20, 2020
1 parent 51f8716 commit 7cd892f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -656,8 +656,8 @@ void _julia_init(JL_IMAGE_SEARCH rel)
jl_winsock_handle = jl_dlopen("ws2_32.dll", 0);
jl_exe_handle = GetModuleHandleA(NULL);
JL_MUTEX_INIT(&jl_in_stackwalk);
SymSetOptions(SYMOPT_UNDNAME | SYMOPT_DEFERRED_LOADS | SYMOPT_LOAD_LINES);
if (!SymInitialize(GetCurrentProcess(), NULL, 1)) {
SymSetOptions(SYMOPT_UNDNAME | SYMOPT_DEFERRED_LOADS | SYMOPT_LOAD_LINES | SYMOPT_IGNORE_CVREC);
if (!SymInitialize(GetCurrentProcess(), "", 1)) {
jl_printf(JL_STDERR, "WARNING: failed to initialize stack walk info\n");
}
needsSymRefreshModuleList = 0;
Expand Down

0 comments on commit 7cd892f

Please sign in to comment.