From f190c5c4e9f943206ff661ee21546d067ceb09d0 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Thu, 25 May 2000 02:05:08 +0000 Subject: [PATCH] Ensure bfd_close after bfd_openw so we don't get multiple bfd_openw calls for same file. --- binutils/ChangeLog | 5 +++++ binutils/objdump.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 7ee94d4ae7..6365b7121f 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2000-05-24 Alan Modra + + * objdump.c (display_target_list): Close the bfd. + (display_info_table): Likewise. + 2000-05-14 H.J. Lu (hjl@gnu.org) * objcopy.c (filter_symbols): Don't strip global symbols in diff --git a/binutils/objdump.c b/binutils/objdump.c index cd61ec0d8d..522f6ec217 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -2653,6 +2653,7 @@ display_target_list () { if (bfd_get_error () != bfd_error_invalid_operation) nonfatal (p->name); + bfd_close (abfd); continue; } @@ -2660,6 +2661,7 @@ display_target_list () if (bfd_set_arch_mach (abfd, (enum bfd_architecture) a, 0)) printf (" %s\n", bfd_printable_arch_mach ((enum bfd_architecture) a, 0)); + bfd_close (abfd); } unlink (dummy_name); free (dummy_name); @@ -2727,6 +2729,8 @@ display_info_table (first, last) putchar ('-'); putchar (' '); } + if (abfd != NULL) + bfd_close (abfd); } putchar ('\n'); }