Skip to content

Commit

Permalink
Apply FirstChanceHandler changes on the Win side too
Browse files Browse the repository at this point in the history
  • Loading branch information
supervacuus committed Sep 29, 2023
1 parent 695d159 commit bd37fea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/crashpad_client_win.cc
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ HANDLE g_signal_exception = INVALID_HANDLE_VALUE;
// Where we store the exception information that the crash handler reads.
ExceptionInformation g_crash_exception_information;

CrashpadClient::FirstChanceHandlerWin first_chance_handler_ = nullptr;
CrashpadClient::FirstChanceHandler first_chance_handler_ = nullptr;

// Guards multiple simultaneous calls to DumpWithoutCrash() in the client.
base::Lock* g_non_crash_dump_lock = nullptr;
Expand Down Expand Up @@ -1148,7 +1148,7 @@ bool CrashpadClient::DumpAndCrashTargetProcess(HANDLE process,

// static
void CrashpadClient::SetFirstChanceExceptionHandler(
FirstChanceHandlerWin handler) {
FirstChanceHandler handler) {
first_chance_handler_ = handler;
}

Expand Down

0 comments on commit bd37fea

Please sign in to comment.