this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[coredump] Bug Fix

Co-authored-by: Sergey Bugaev <bugaevc@gmail.com>

+1 -1
+1 -1
src/hosttools/src/coredump/main.cpp
··· 767 767 static 768 768 void fill_arm_thread_state64(arm_thread_state64_t* state, const struct thread_info* info) 769 769 { 770 - for (int i = 0; i < sizeof(state->x); i++) { 770 + for (int i = 0; i < sizeof(state->x) / sizeof(state->x[0]); i++) { 771 771 state->x[i] = info->prstatus->elf64.general_registers.aarch64.regs[i]; 772 772 } 773 773