tools/minidump: support 64-bit stack dump

This is to follow up commit 1890b58e67 in patch #12316.

Signed-off-by: Yanfeng Liu <yfliu2008@qq.com>
This commit is contained in:
Yanfeng Liu 2024-05-17 10:04:04 +08:00 committed by Xiang Xiao
parent 9257af55f1
commit 77f3225140

View File

@ -387,7 +387,7 @@ class DumpLogFile:
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