diff options
author | Alan Modra <amodra@gmail.com> | 2006-05-11 12:34:46 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-05-11 12:34:46 +0000 |
commit | 8b95791f5b3923a4100c60011753355597bd4507 (patch) | |
tree | 8a2008dd0da80c19434c12e60ad0f135056d504e /bfd/elf.c | |
parent | Reviewed and approved by Jim Blandy <jimb@codesourcery.com> (diff) | |
download | binutils-gdb-8b95791f5b3923a4100c60011753355597bd4507.tar.gz binutils-gdb-8b95791f5b3923a4100c60011753355597bd4507.tar.bz2 binutils-gdb-8b95791f5b3923a4100c60011753355597bd4507.zip |
* elf.c (_bfd_elf_init_private_section_data): Don't change
section type if already set.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/elf.c b/bfd/elf.c index 120c4b08683..fbd8432cf51 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -5911,7 +5911,8 @@ _bfd_elf_init_private_section_data (bfd *ibfd, output BFD section flags has been set to something different. elf_fake_sections will set ELF section type based on BFD section flags. */ - if (osec->flags == isec->flags || !osec->flags) + if (osec->flags == isec->flags + || (osec->flags == 0 && elf_section_type (osec) == SHT_NULL)) elf_section_type (osec) = elf_section_type (isec); /* Set things up for objcopy and relocatable link. The output |