diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2002-11-20 18:17:04 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2002-11-20 18:17:04 +0000 |
commit | 963f13ecfe413460bc1d8b18847eb42cd2e8b0f5 (patch) | |
tree | 9f9ea981e0a10ab9259719aad26aca0b5cf74af2 /bfd/elf.c | |
parent | a1358604f19f33d3b588e685f85cbee16ba8bb50 (diff) | |
download | gdb-963f13ecfe413460bc1d8b18847eb42cd2e8b0f5.zip gdb-963f13ecfe413460bc1d8b18847eb42cd2e8b0f5.tar.gz gdb-963f13ecfe413460bc1d8b18847eb42cd2e8b0f5.tar.bz2 |
* elf.c (_bfd_elf_link_hash_table_init): Make sure
can_refcount is properly extended to the type of
init_refcount.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1503,7 +1503,10 @@ _bfd_elf_link_hash_table_init (table, abfd, newfunc) table->dynamic_sections_created = false; table->dynobj = NULL; - table->init_refcount = get_elf_backend_data (abfd)->can_refcount - 1; + /* Make sure can_refcount is extended to the width and signedness of + init_refcount before we subtract one from it. */ + table->init_refcount = get_elf_backend_data (abfd)->can_refcount; + --table->init_refcount; /* The first dynamic symbol is a dummy. */ table->dynsymcount = 1; table->dynstr = NULL; |