mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 13:27:26 +08:00
2012-01-10 Tristan Gingold <gingold@adacore.com>
* mach-o.c (bfd_mach_o_build_commands): Avoid uninitialized false warning.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2012-01-10 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* mach-o.c (bfd_mach_o_build_commands): Avoid uninitialized false
|
||||||
|
warning.
|
||||||
|
|
||||||
2012-01-10 Tristan Gingold <gingold@adacore.com>
|
2012-01-10 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* bfdio.c (bfd_tell): Handle nested archives.
|
* bfdio.c (bfd_tell): Handle nested archives.
|
||||||
|
@ -2154,7 +2154,7 @@ bfd_mach_o_build_commands (bfd *abfd)
|
|||||||
{
|
{
|
||||||
bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
|
bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
|
||||||
unsigned int wide = mach_o_wide_p (&mdata->header);
|
unsigned int wide = mach_o_wide_p (&mdata->header);
|
||||||
bfd_mach_o_segment_command *seg;
|
bfd_mach_o_segment_command *seg = NULL;
|
||||||
bfd_mach_o_load_command *cmd;
|
bfd_mach_o_load_command *cmd;
|
||||||
bfd_mach_o_load_command *symtab_cmd;
|
bfd_mach_o_load_command *symtab_cmd;
|
||||||
unsigned symcind;
|
unsigned symcind;
|
||||||
|
Reference in New Issue
Block a user