summaryrefslogtreecommitdiff
path: root/binutils/objcopy.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-04-25 14:27:00 +0000
committerNick Clifton <nickc@redhat.com>2005-04-25 14:27:00 +0000
commitbee59fd28b6134cf8d4e8435b1dedc638ee9f6ea (patch)
treeaf824d98438ada88acd929a8f9bd75497292a57d /binutils/objcopy.c
parent5219e4c0b408d01b53043155d4b885637a0879f7 (diff)
downloadbinutils-gdb-bee59fd28b6134cf8d4e8435b1dedc638ee9f6ea.tar.gz
PR872
* objcopy.c (copy_archive): Initialise 'obfd' field of new name_list structure.
Diffstat (limited to 'binutils/objcopy.c')
-rw-r--r--binutils/objcopy.c1
1 files changed, 1 insertions, 0 deletions
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)