mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-28 16:53:36 +00:00
fix binding reporting for WEAK symbols (#7555)
This commit is contained in:
parent
6c9e4cbb4f
commit
114b266830
@ -2397,6 +2397,7 @@ static void fill_symbol_bind_and_type (struct r_bin_elf_symbol_t *ret, Elf_(Sym)
|
||||
switch (ELF_ST_BIND(sym->st_info)) {
|
||||
case STB_LOCAL: s_bind ("LOCAL"); break;
|
||||
case STB_GLOBAL: s_bind ("GLOBAL"); break;
|
||||
case STB_WEAK: s_bind ("WEAK"); break;
|
||||
case STB_NUM: s_bind ("NUM"); break;
|
||||
case STB_LOOS: s_bind ("LOOS"); break;
|
||||
case STB_HIOS: s_bind ("HIOS"); break;
|
||||
|
Loading…
Reference in New Issue
Block a user