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:
parent
9257af55f1
commit
77f3225140
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user