diff options
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/objcopy.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 82dec22..9eb947c 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -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. diff --git a/binutils/objcopy.c b/binutils/objcopy.c index 76e1b83..dfaa1bcaf 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) |