mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
Fix address parsing issue for high 64-bit targets on python 2.x
This commit is contained in:
+1
-1
@@ -225,7 +225,7 @@ recv(onStanza);
|
||||
stanza = message['payload']
|
||||
if stanza['from'] == "/events":
|
||||
if stanza['name'] == '+add':
|
||||
events = [(timestamp, int(target_address, 16), message) for timestamp, target_address, message in stanza['payload']['items']]
|
||||
events = [(timestamp, int(target_address.rstrip("L"), 16), message) for timestamp, target_address, message in stanza['payload']['items']]
|
||||
|
||||
ui.on_trace_events(events)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user