* objcopy.c (copy_archive): Initialise 'obfd' field of new name_list structure.
This commit is contained in:
Nick Clifton 2005-04-25 14:27:00 +00:00
parent 5219e4c0b4
commit bee59fd28b
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,11 @@
2005-04-25 Nick Clifton <nickc@redhat.com>
PR872
* objcopy.c (copy_archive): Initialise 'obfd' field of new
name_list structure.
* objcopy.c (copy_usage): Fix description of -K switch.
* doc/binutils.texi (strip, objcopy): Fix description of -K
switch.

View File

@ -1627,6 +1627,7 @@ copy_archive (bfd *ibfd, bfd *obfd, const char *output_target)
l = xmalloc (sizeof (struct name_list));
l->name = output_name;
l->next = list;
l->obfd = NULL;
list = l;
if (output_bfd == NULL)