diff options
| -rw-r--r-- | mullvad-daemon/src/windows_exception_logging.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-daemon/src/windows_exception_logging.rs b/mullvad-daemon/src/windows_exception_logging.rs index 4c09f61649..60c2c5ce23 100644 --- a/mullvad-daemon/src/windows_exception_logging.rs +++ b/mullvad-daemon/src/windows_exception_logging.rs @@ -87,7 +87,7 @@ extern "system" fn logging_exception_filter(info: *mut EXCEPTION_POINTERS) -> LO match find_address_module(record.ExceptionAddress) { Some(mod_info) => log::error!( - "Unhandled exception at {:#x?} in {}: {}\n{}", + "Unhandled exception at RVA {:#x?} in {}: {}\n{}", record.ExceptionAddress as usize - mod_info.base_address as usize, mod_info.name, error_str, |
