x86: Initialize def_protected
* elf32-i386.c (elf_i386_link_hash_newfunc): Initialize def_protected. * elf64-x86-64.c (elf_x86_64_link_hash_newfunc): Likewise.
This commit is contained in:
parent
a5b4ee9451
commit
596dc58f33
3 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2017-08-27 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* elf32-i386.c (elf_i386_link_hash_newfunc): Initialize
|
||||
def_protected.
|
||||
* elf64-x86-64.c (elf_x86_64_link_hash_newfunc): Likewise.
|
||||
|
||||
2017-08-26 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR ld/21997
|
||||
|
|
|
@ -1163,6 +1163,7 @@ elf_i386_link_hash_newfunc (struct bfd_hash_entry *entry,
|
|||
eh->has_non_got_reloc = 0;
|
||||
eh->no_finish_dynamic_symbol = 0;
|
||||
eh->tls_get_addr = 0;
|
||||
eh->def_protected = 0;
|
||||
eh->func_pointer_refcount = 0;
|
||||
eh->plt_got.offset = (bfd_vma) -1;
|
||||
eh->tlsdesc_got = (bfd_vma) -1;
|
||||
|
|
|
@ -1277,6 +1277,7 @@ elf_x86_64_link_hash_newfunc (struct bfd_hash_entry *entry,
|
|||
eh->has_non_got_reloc = 0;
|
||||
eh->no_finish_dynamic_symbol = 0;
|
||||
eh->tls_get_addr = 0;
|
||||
eh->def_protected = 0;
|
||||
eh->func_pointer_refcount = 0;
|
||||
eh->plt_second.offset = (bfd_vma) -1;
|
||||
eh->plt_got.offset = (bfd_vma) -1;
|
||||
|
|
Loading…
Add table
Reference in a new issue