Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

**Fixes**:

- Breakpad: fix loader deadlock when capturing crash dump while network requests are in flight. ([#1502](https://github.com/getsentry/sentry-native/pull/1502))

## 0.12.5

**Features**:
Expand Down
2 changes: 2 additions & 0 deletions src/backends/sentry_backend_breakpad.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,8 @@ breakpad_backend_startup(
&& defined(SENTRY_THREAD_STACK_GUARANTEE_AUTO_INIT)
sentry__set_default_thread_stack_guarantee();
# endif
// Pre-load to prevent frequent LoadPsApi deadlocks in MiniDumpWriteDump
LoadLibraryA("psapi.dll");
backend->data = new google_breakpad::ExceptionHandler(
current_run_folder->path_w, nullptr, breakpad_backend_callback, nullptr,
google_breakpad::ExceptionHandler::HANDLER_EXCEPTION);
Expand Down
Loading