Skip to content

Commit

Permalink
tools/minidump: support 64-bit stack dump
Browse files Browse the repository at this point in the history
This is to follow up commit 1890b58 in patch apache#12316.

Signed-off-by: Yanfeng Liu <[email protected]>
  • Loading branch information
yf13 committed May 17, 2024
1 parent 9257af5 commit d0465e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/minidumpserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def _parse_stack(self, line, start, data):
start = addr_start

for val in match_res.groupdict()["VALS"].split():
data = data + struct.pack("<I", int(val, 16))
data = data + struct.pack("<Q", int(val, 16))

return start, data

Expand Down

0 comments on commit d0465e6

Please sign in to comment.