Skip to content

Commit

Permalink
should_retry_patch must be initialized otherwise random syscall patch…
Browse files Browse the repository at this point in the history
… retrying errors happen even on aarch64
  • Loading branch information
sidkshatriya authored and rocallahan committed Dec 15, 2024
1 parent 28e7f5d commit 946378b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Event.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,8 @@ struct SyscallEvent {
switchable(PREVENT_SWITCH),
is_restart(false),
failed_during_preparation(false),
in_sysemu(false) {}
in_sysemu(false),
should_retry_patch(false) {}

std::string syscall_name() const { return rr::syscall_name(number, arch()); }

Expand Down

0 comments on commit 946378b

Please sign in to comment.