Skip to content

Commit

Permalink
Fixup arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
OFFTKP committed Sep 18, 2024
1 parent a599be1 commit 1848791
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/signals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ static LONG WINAPI SignalHandler(EXCEPTION_POINTERS* pExp) noexcept {
switch (pExp->ExceptionRecord->ExceptionCode) {
case EXCEPTION_ACCESS_VIOLATION:
handled = signals->DispatchAccessViolation(
code_address, reinterpret_cast<void*>(pExp->ExceptionRecord->ExceptionInformation[1]),
Common::IsWriteError(pExp));
pExp->ContextRecord,
reinterpret_cast<void*>(pExp->ExceptionRecord->ExceptionInformation[1]));
break;
case EXCEPTION_ILLEGAL_INSTRUCTION:
handled = signals->DispatchIllegalInstruction(pExp->ContextRecord, code_address);
handled = signals->DispatchIllegalInstruction(pExp->ContextRecord);
break;
default:
break;
Expand Down

0 comments on commit 1848791

Please sign in to comment.