mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-24 06:48:46 +00:00
Better names for virtual Dalvik methods
This commit is contained in:
parent
b50a06f57c
commit
1111c00ea2
@ -505,7 +505,8 @@ static int *parse_class (RBinFile *binfile, struct r_bin_dex_obj_t *bin, struct
|
||||
dprintf (" method code_offset: %u\n", (ut32)MC);
|
||||
{
|
||||
RBinSymbol *sym = R_NEW0 (RBinSymbol);
|
||||
sym->name = r_str_newf ("virtual.%s", name);
|
||||
//sym->name = r_str_newf ("virtual.%s.%s", class_name, name);
|
||||
sym->name = r_str_newf ("%s.%s", class_name, name);
|
||||
sym->type = r_str_const ("FUNC");
|
||||
sym->paddr = sym->vaddr = MC;
|
||||
r_list_append (bin->methods_list, sym);
|
||||
|
Loading…
x
Reference in New Issue
Block a user