Tags: ferivoz/pwndbg
Tags
Fix disasm call target display when symbol is known (pwndbg#801) This commit fixes the issue described in pwndbg#772 (comment) tl;dr: when we displayed a known constant call instruction like `call qword ptr [rip + 0x1c7d2]` when it called a known symbol we only displayed the target address instead of the symbol. Now, we will display only the target address. Note that there are still cases when we can display both. This can happen for example for a `ret` instruction (even without emulation). This commit extends a comment around that code to give such example.