From e9edc8084b1987429153078e465b731dbb88b47d Mon Sep 17 00:00:00 2001 From: "Maciej W. Rozycki" Date: Fri, 11 Jun 2004 14:19:32 +0000 Subject: [PATCH] * coff-alpha.c (alpha_relocate_section): Set used_by_bfd directly as ecoff_section_data() does not return a valid lvalue. --- bfd/ChangeLog | 5 +++++ bfd/coff-alpha.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 99de171..2de9b6c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2004-06-11 Maciej W. Rozycki + + * coff-alpha.c (alpha_relocate_section): Set used_by_bfd directly + as ecoff_section_data() does not return a valid lvalue. + 2004-06-09 Alexandre Oliva * elflink.c (elf_sort_symbol): Compare section id, not pointers. diff --git a/bfd/coff-alpha.c b/bfd/coff-alpha.c index 262af47..3ea6333 100644 --- a/bfd/coff-alpha.c +++ b/bfd/coff-alpha.c @@ -1455,7 +1455,7 @@ alpha_relocate_section (output_bfd, info, input_bfd, input_section, amt = sizeof (struct ecoff_section_tdata); lita_sec_data = ((struct ecoff_section_tdata *) bfd_zalloc (input_bfd, amt)); - ecoff_section_data (input_bfd, lita_sec) = lita_sec_data; + lita_sec->used_by_bfd = lita_sec_data; } if (lita_sec_data->gp != 0) -- 2.7.4