From c4dd531f11649c6143ef5bad2390374512e5828b Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 4 Apr 1994 23:44:13 +0000 Subject: [PATCH] * aoutx.h (NAME(aout,bfd_free_cached_info)): Don't free anything if we don't have a bfd_object. --- bfd/ChangeLog | 3 +++ bfd/aoutx.h | 3 +++ 2 files changed, 6 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9350dc7ab8..abe6ed1527 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,8 @@ Mon Apr 4 15:30:49 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + * aoutx.h (NAME(aout,bfd_free_cached_info)): Don't free anything + if we don't have a bfd_object. + Made sure that every call to bfd_read, bfd_write, and bfd_seek checks the return value and handled bfd_error correctly. These changes are not itemised. Also: diff --git a/bfd/aoutx.h b/bfd/aoutx.h index 5d94fb44ab..2bd29ec115 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -2880,6 +2880,9 @@ NAME(aout,bfd_free_cached_info) (abfd) { asection *o; + if (bfd_get_format (abfd) != bfd_object) + return true; + #define FREE(x) if (x != NULL) { free (x); x = NULL; } FREE (obj_aout_symbols (abfd)); FREE (obj_aout_external_syms (abfd));