mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't fail if we encounter a relocation of type "none". Just ignore
it. It's a no-op relocation. Trigger case: ports/x11-toolkits/pango
This commit is contained in:
parent
b37d468c2a
commit
b615f6d2b1
1 changed files with 3 additions and 0 deletions
|
|
@ -259,6 +259,9 @@ reloc_non_plt_obj(Obj_Entry *obj_rtld, Obj_Entry *obj, const Elf_Rela *rela,
|
|||
break;
|
||||
}
|
||||
|
||||
case R_IA64_NONE:
|
||||
break;
|
||||
|
||||
default:
|
||||
_rtld_error("%s: Unsupported relocation type %d"
|
||||
" in non-PLT relocations\n", obj->path,
|
||||
|
|
|
|||
Loading…
Reference in a new issue