-
How to get Decompiled:
Disassembly:
Sleigh:
|
Beta Was this translation helpful? Give feedback.
Answered by
astrelsky
Feb 21, 2025
Replies: 1 comment
-
Assuming a 32 bit program with an internal size of 4 bytes, the output is correct. Pointer arithmetic on a Just set the type of |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jobermayr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Assuming a 32 bit program with an internal size of 4 bytes, the output is correct.
Pointer arithmetic on a
void*
is undefined behavior. It either needs to be cast to an integer type or touint8_t *
or equivalent.Just set the type of
pvVar1
tobyte *