aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-02-15 02:24:53 +0000
committerAndrew Cagney <cagney@redhat.com>2004-02-15 02:24:53 +0000
commitc92c35e7061ef1444fb08d73f8618d2dac543ee3 (patch)
tree13104b431dd3295b87fbaa0f0544ef6957ce5766 /binutils
parent832b6402635e47707c1838a5ee300ccfb70b2d69 (diff)
downloadfsf-binutils-gdb-c92c35e7061ef1444fb08d73f8618d2dac543ee3.zip
fsf-binutils-gdb-c92c35e7061ef1444fb08d73f8618d2dac543ee3.tar.gz
fsf-binutils-gdb-c92c35e7061ef1444fb08d73f8618d2dac543ee3.tar.bz2
Use bfd_cache_close, instead of accessing bfd->iostream directly.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/ar.c4
-rw-r--r--binutils/arsup.c2
3 files changed, 8 insertions, 3 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 49ce6e7..9c9ce85 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-14 Andrew Cagney <cagney@redhat.com>
+
+ * ar.c (remove_output): Use bfd_cache_close.
+ * arsup.c (ar_end): Ditto.
+
2004-01-21 Roland McGrath <roland@redhat.com>
* readelf.c (get_note_type): Match NT_AUXV.
diff --git a/binutils/ar.c b/binutils/ar.c
index 5771427..b85d62e 100644
--- a/binutils/ar.c
+++ b/binutils/ar.c
@@ -324,8 +324,8 @@ remove_output (void)
{
if (output_filename != NULL)
{
- if (output_bfd != NULL && output_bfd->iostream != NULL)
- fclose ((FILE *) (output_bfd->iostream));
+ if (output_bfd != NULL)
+ bfd_cache_close (output_bfd);
if (output_file != NULL)
fclose (output_file);
unlink (output_filename);
diff --git a/binutils/arsup.c b/binutils/arsup.c
index 676a6bc..a621bf9 100644
--- a/binutils/arsup.c
+++ b/binutils/arsup.c
@@ -433,7 +433,7 @@ ar_end (void)
{
if (obfd)
{
- fclose ((FILE *)(obfd->iostream));
+ bfd_cache_close (obfd);
unlink (bfd_get_filename (obfd));
}
}