From: Nick Clifton Date: Mon, 25 Apr 2005 14:27:00 +0000 (+0000) Subject: PR872 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bee59fd28b6134cf8d4e8435b1dedc638ee9f6ea;p=binutils-gdb.git PR872 * objcopy.c (copy_archive): Initialise 'obfd' field of new name_list structure. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 82dec22525f..9eb947c4252 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,6 +1,11 @@ 2005-04-25 Nick Clifton + 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. diff --git a/binutils/objcopy.c b/binutils/objcopy.c index 76e1b832aa6..dfaa1bcaf61 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -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)