Skip to content
Snippets Groups Projects
Commit 52cbcf9b authored by hjk's avatar hjk
Browse files

Debugger: Truncate pointer values when accessing string data


Change-Id: I001a8c605e3404fe398c24c4b2c83664caae1d59
Reviewed-by: default avatarDavid Schulz <david.schulz@digia.com>
Reviewed-by: default avatarhjk <hjk121@nokiamail.com>
parent 68a6ce2a
No related branches found
No related tags found
No related merge requests found
...@@ -294,6 +294,10 @@ class DumperBase: ...@@ -294,6 +294,10 @@ class DumperBase:
size = self.extractInt(addr + 4) size = self.extractInt(addr + 4)
alloc = self.extractInt(addr + 8) & 0x7ffffff alloc = self.extractInt(addr + 8) & 0x7ffffff
data = addr + self.dereference(addr + 8 + self.ptrSize()) data = addr + self.dereference(addr + 8 + self.ptrSize())
if self.ptrSize() == 4:
data = data & 0xffffffff
else:
data = data & 0xffffffffffffffff
else: else:
# Data: # Data:
# - QBasicAtomicInt ref; # - QBasicAtomicInt ref;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment