diff options
Diffstat (limited to 'bfd/vms-lib.c')
-rw-r--r-- | bfd/vms-lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/vms-lib.c b/bfd/vms-lib.c index fa23b78..56b80ad 100644 --- a/bfd/vms-lib.c +++ b/bfd/vms-lib.c @@ -1,6 +1,6 @@ /* BFD back-end for VMS archive files. - Copyright 2010, 2011 Free Software Foundation, Inc. + Copyright 2010, 2011, 2012 Free Software Foundation, Inc. Written by Tristan Gingold <gingold@adacore.com>, AdaCore. This file is part of BFD, the Binary File Descriptor library. @@ -1337,7 +1337,7 @@ _bfd_vms_lib_get_module (bfd *abfd, unsigned int modidx) res = _bfd_create_empty_archive_element_shell (abfd); if (res == NULL) return NULL; - arelt = bfd_zalloc (res, sizeof (*arelt)); + arelt = bfd_zmalloc (sizeof (*arelt)); if (arelt == NULL) return NULL; res->arelt_data = arelt; |