Skip to content

Commit

Permalink
gdbserver:fix bug when use arm-a coredump addr mismatch
Browse files Browse the repository at this point in the history
Signed-off-by: anjiahao <[email protected]>
  • Loading branch information
anjiahao1 committed Oct 15, 2024
1 parent 3f776ca commit 578edf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gdbserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ def __init__(self, coredump):
data = f.read(segment["p_filesz"])
self.__memories.append(
pack_memory(
segment["p_paddr"], segment["p_paddr"] + len(data), data
segment["p_vaddr"], segment["p_vaddr"] + len(data), data
)
)

Expand Down

0 comments on commit 578edf5

Please sign in to comment.