mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-29 17:33:08 +00:00
Handle 'reloc.' rules, but requires better analysis (ujmp)
This commit is contained in:
parent
d85cf28e84
commit
effd1856a1
@ -33,6 +33,10 @@ R_API char *r_core_anal_fcn_autoname(RCore *core, ut64 addr) {
|
||||
if (!strncmp (f->name, "sym.imp.", 8)) {
|
||||
free (do_call);
|
||||
do_call = strdup (f->name+8);
|
||||
} else
|
||||
if (!strncmp (f->name, "reloc.", 6)) {
|
||||
free (do_call);
|
||||
do_call = strdup (f->name+6);
|
||||
}
|
||||
eprintf (" (debug) 0x%08"PFMT64x" TO 0x%08"PFMT64x" %s\n",
|
||||
addr, ref->addr, f->name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user