Question about pointer offsets
Posted: Sun Jan 13, 2013 3:47 am
I noticed something that I don't understand. Maybe it's a bug.
If you have 1 offset for a pointer your write it like this
if you have more offsets you write it like this
I would expect that if I only have 1 offset this should still work
But it doesn't. I get a value that doesn't seem to have anything to do with the values used.
Is this a bug?
If you have 1 offset for a pointer your write it like this
Code: Select all
memoryReadXXXPtr(proc, address, offset)
Code: Select all
memoryReadXXXPtr(proc, address, {offset1,offset2})
Code: Select all
memoryReadXXXPtr(proc, address, {offset})
Is this a bug?