mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
* objcopy.c (set_long_section_mode): Check input_bfd is coff
before accessing coff specific fields of bfd.
This commit is contained in:
@@ -2143,7 +2143,8 @@ set_long_section_mode (bfd *output_bfd, bfd *input_bfd, enum long_section_name_h
|
||||
/* This is only relevant to Coff targets. */
|
||||
if (bfd_get_flavour (output_bfd) == bfd_target_coff_flavour)
|
||||
{
|
||||
if (style == KEEP)
|
||||
if (style == KEEP
|
||||
&& bfd_get_flavour (input_bfd) == bfd_target_coff_flavour)
|
||||
style = bfd_coff_long_section_names (input_bfd) ? ENABLE : DISABLE;
|
||||
bfd_coff_set_long_section_names (output_bfd, style != DISABLE);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user