diff options
| -rw-r--r-- | executor/executor_runner.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/executor_runner.h b/executor/executor_runner.h index 55a6c422c..e0c4b1775 100644 --- a/executor/executor_runner.h +++ b/executor/executor_runner.h @@ -760,7 +760,7 @@ static void SigsegvHandler(int sig, siginfo_t* info, void* ucontext) // Print the current function PC so that it's possible to map the failing PC // to a symbol in the binary offline (we usually compile as PIE). failmsg("SIGSEGV", "sig:%d handler:%p pc:%p addr:%p", - sig, SigsegvHandler, info->si_addr, reinterpret_cast<void*>(pc)); + sig, SigsegvHandler, reinterpret_cast<void*>(pc), info->si_addr); } static void runner(char** argv, int argc) |
