Fix C_FILE auxent on xcoff64.

This commit is contained in:
Tom Rix 2002-04-20 06:47:24 +00:00
parent aa3d5824a4
commit deeb2cd7e6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-04-20 Tom Rix <trix@redhat.com>
* coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Fix C_FILE auxent.
2002-04-20 Alan Modra <amodra@bigpond.net.au>
* archures.c (bfd_lookup_arch): Move the list order comment..

View File

@ -293,7 +293,7 @@ _bfd_xcoff64_swap_aux_in (abfd, ext1, type, class, indx, numaux, in1)
switch (class)
{
case C_FILE:
if (ext->x_file.x_n.x_zeroes == 0)
if (ext->x_file.x_n.x_zeroes[0] == 0)
{
in->x_file.x_n.x_zeroes = 0;
in->x_file.x_n.x_offset = H_GET_32 (abfd, ext->x_file.x_n.x_offset);