summaryrefslogtreecommitdiff
path: root/bfd/elfcode.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2011-12-14 16:12:12 +0000
committerNick Clifton <nickc@redhat.com>2011-12-14 16:12:12 +0000
commit97dc69a186828fd42e7ed11605c973cf77f8e4a9 (patch)
tree64b260fec9dabd560e3af41ad6eed1732ab5474c /bfd/elfcode.h
parent5a212e0deaa09a7ec47f6b04b23d1979c331c4a2 (diff)
downloadbinutils-redhat-97dc69a186828fd42e7ed11605c973cf77f8e4a9.tar.gz
When computing checksums, skip the contents of sections with the SHT_NOBITS type.
Revert change to compress.c
Diffstat (limited to 'bfd/elfcode.h')
-rw-r--r--bfd/elfcode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfcode.h b/bfd/elfcode.h
index f5727feda4..22448744a8 100644
--- a/bfd/elfcode.h
+++ b/bfd/elfcode.h
@@ -1098,10 +1098,10 @@ elf_checksum_contents (bfd *abfd,
(*process) (&x_shdr, sizeof x_shdr, arg);
/* PR ld/12451:
- Process the section's contents; reading them in if necessary. */
+ Process the section's contents, if it has some. Read them in if necessary. */
if (i_shdr.contents)
(*process) (i_shdr.contents, i_shdr.sh_size, arg);
- else
+ else if (i_shdr.sh_type != SHT_NOBITS)
{
asection *sec;