aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2008-01-07 17:53:03 +0000
committerNick Clifton <nickc@redhat.com>2008-01-07 17:53:03 +0000
commit780b23606d1373bf8d28535bbf6b3f87af863bde (patch)
tree196f97bb2be1e89cc9751dedcbeed5a9116c73ba /bfd
parentace793883816ba44f9c2cb090e8ea5ff159ad9be (diff)
downloadfsf-binutils-gdb-780b23606d1373bf8d28535bbf6b3f87af863bde.zip
fsf-binutils-gdb-780b23606d1373bf8d28535bbf6b3f87af863bde.tar.gz
fsf-binutils-gdb-780b23606d1373bf8d28535bbf6b3f87af863bde.tar.bz2
PR binutils/5535
* vms.c (vms_close_and_cleanup): Check for the presence of a vms_private_data_struct before examining any of its fields.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog6
-rw-r--r--bfd/vms.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index ef3fc9f..09cd0e4 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2008-01-07 Nick Clifton <nickc@redhat.com>
+
+ PR binutils/5535
+ * vms.c (vms_close_and_cleanup): Check for the presence of a
+ vms_private_data_struct before examining any of its fields.
+
2008-01-07 H.J. Lu <hongjiu.lu@intel.com>
PR ld/5522
diff --git a/bfd/vms.c b/bfd/vms.c
index 457aea8..bb5ab11 100644
--- a/bfd/vms.c
+++ b/bfd/vms.c
@@ -428,7 +428,8 @@ vms_close_and_cleanup (bfd * abfd)
#if VMS_DEBUG
vms_debug (1, "vms_close_and_cleanup (%p)\n", abfd);
#endif
- if (abfd == NULL)
+ if (abfd == NULL
+ || abfd->tdata.any == NULL)
return TRUE;
if (PRIV (vms_buf) != NULL)