mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
Added code to deal with filenames less than 9 characters in a COFF file.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jun 7 12:35:46 1991 Sean Fagan (sef at cygint.cygnus.com)
|
||||||
|
|
||||||
|
* coffcode.h (coff_swap_aux_in): added else case to deal with
|
||||||
|
filenames less than 9 characters.
|
||||||
|
|
||||||
Thu Jun 6 18:27:38 1991 Steve Chamberlain (steve at cygint.cygnus.com)
|
Thu Jun 6 18:27:38 1991 Steve Chamberlain (steve at cygint.cygnus.com)
|
||||||
|
|
||||||
* ../include/oasys.h oasys.c (oasys_archive_p): fixed so it works
|
* ../include/oasys.h oasys.c (oasys_archive_p): fixed so it works
|
||||||
|
@ -205,6 +205,9 @@ DEFUN(coff_swap_aux_in,(abfd, ext, type, class, in),
|
|||||||
if (ext->x_file.x_fname[0] == 0) {
|
if (ext->x_file.x_fname[0] == 0) {
|
||||||
in->x_file.x_n.x_zeroes = 0;
|
in->x_file.x_n.x_zeroes = 0;
|
||||||
in->x_file.x_n.x_offset = bfd_h_get_32(abfd, ext->x_file.x_n.x_offset);
|
in->x_file.x_n.x_offset = bfd_h_get_32(abfd, ext->x_file.x_n.x_offset);
|
||||||
|
} else {
|
||||||
|
memcpy (in->x_file.x_fname, ext->x_file.x_fname,
|
||||||
|
sizeof (in->x_file.x_fname));
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user