Replies: 1 comment
|
It turns out to be that I should also mark the r28 as |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Disassembler view shows

jsr r6refers to the right called function. But decompiler view uses pointer got from GOT. so how to produce strstr() in decompiler view instead of some pointer calculation?The address of
libc::strstr()is calculated by:And because of this, sometimes decompiler cant recognize no-return function
stack_check_guardand continues to expand the result, unless meets a return instruction.All reactions