From: David Edelsohn Date: Thu, 20 Jun 1996 19:36:35 +0000 (+0000) Subject: * peicode.h (coff_swap_scnhdr_out): ".drectve" doesn't have trailing 0. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ca108cdd07df42ff3331a61ce8bbd558de9b4da;p=binutils-gdb.git * peicode.h (coff_swap_scnhdr_out): ".drectve" doesn't have trailing 0. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 70f7005bbd5..931966d104f 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +Thu Jun 20 11:00:57 1996 Doug Evans + + * peicode.h (coff_swap_scnhdr_out): ".drectve" doesn't have trailing 0. + Wed Jun 19 11:37:52 1996 Ian Lance Taylor * elf.c (map_sections_to_segments): Fix up the test for -Ttext to diff --git a/bfd/peicode.h b/bfd/peicode.h index 4e937cfba63..213c20ce8eb 100644 --- a/bfd/peicode.h +++ b/bfd/peicode.h @@ -783,7 +783,7 @@ static void add_data_entry (abfd, aout, idx, name, base) if (sec != NULL) { aout->DataDirectory[idx].VirtualAddress = sec->vma - base; - aout->DataDirectory[idx].Size = sec->_cooked_size; + aout->DataDirectory[idx].Size = pei_section_data (abfd, sec)->virt_size; sec->flags |= SEC_DATA; } } @@ -1065,7 +1065,6 @@ coff_swap_scnhdr_out (abfd, in, out) else if (strcmp (scnhdr_int->s_name, ".rdata") == 0 || strcmp (scnhdr_int->s_name, ".edata") == 0) flags = IMAGE_SCN_MEM_READ | SEC_DATA; - /* ppc-nt additions */ else if (strcmp (scnhdr_int->s_name, ".pdata") == 0) flags = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_ALIGN_4BYTES | IMAGE_SCN_MEM_READ ; @@ -1077,9 +1076,8 @@ coff_swap_scnhdr_out (abfd, in, out) else if (strcmp (scnhdr_int->s_name, ".ydata") == 0) flags = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_ALIGN_8BYTES | IMAGE_SCN_MEM_READ | IMAGE_SCN_MEM_WRITE ; - else if (strcmp (scnhdr_int->s_name, ".drectve") == 0) + else if (strncmp (scnhdr_int->s_name, ".drectve", strlen(".drectve")) == 0) flags = IMAGE_SCN_LNK_INFO | IMAGE_SCN_LNK_REMOVE ; - /* end of ppc-nt additions */ #ifdef POWERPC_LE_PE else if (strncmp (scnhdr_int->s_name, ".stabstr", strlen(".stabstr")) == 0) {