From f30aeba5fe791c9f27e12ca0bd3088819c52c4bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20W=C3=B6rister?= Date: Fri, 16 Feb 2024 14:45:00 +0100 Subject: [PATCH] debug --- src/dbghelp.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dbghelp.rs b/src/dbghelp.rs index 873c6436..b1eb5bb0 100644 --- a/src/dbghelp.rs +++ b/src/dbghelp.rs @@ -443,7 +443,8 @@ pub fn init() -> Result { let new_search_path = search_path.finalize(); // Set the new search path. - DBGHELP.SymSetSearchPathW().unwrap()(GetCurrentProcess(), new_search_path.as_ptr()); + // Disable for debugging + // DBGHELP.SymSetSearchPathW().unwrap()(GetCurrentProcess(), new_search_path.as_ptr()); INITIALIZED = true; Ok(ret)