projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d7ce4d
)
(ieee_make_empty_symbol): Use bfd_zalloc, not bfd_zmalloc.
author
Alan Modra
<amodra@gmail.com>
Tue, 10 Oct 2000 15:50:35 +0000
(15:50 +0000)
committer
Alan Modra
<amodra@gmail.com>
Tue, 10 Oct 2000 15:50:35 +0000
(15:50 +0000)
bfd/ChangeLog
patch
|
blob
|
history
bfd/ieee.c
patch
|
blob
|
history
diff --git
a/bfd/ChangeLog
b/bfd/ChangeLog
index 5ab46c3b1e300e1d4264d78f9f69a6ebedb7358c..4f2fb8dd3b3f510f9b5c8a9c9e529942b46a21ea 100644
(file)
--- a/
bfd/ChangeLog
+++ b/
bfd/ChangeLog
@@
-1,3
+1,7
@@
+2000-10-10 Alan Modra <alan@linuxcare.com.au>
+
+ * ieee.c (ieee_make_empty_symbol): Use bfd_zalloc, not bfd_zmalloc.
+
2000-10-10 Tom Rix <trix@redhat.com>
* section.c (bfd_make_section_anyway): Release newsect ptr when
diff --git
a/bfd/ieee.c
b/bfd/ieee.c
index e66e2056a7d511d6a0ab729da4ea8dd25ea638fe..97ad7cc844e0b2f0f757cf7300b79bafc2d56694 100644
(file)
--- a/
bfd/ieee.c
+++ b/
bfd/ieee.c
@@
-3725,7
+3725,7
@@
ieee_make_empty_symbol (abfd)
bfd *abfd;
{
ieee_symbol_type *new =
- (ieee_symbol_type *) bfd_z
m
alloc (sizeof (ieee_symbol_type));
+ (ieee_symbol_type *) bfd_zalloc (sizeof (ieee_symbol_type));
if (!new)
return NULL;
new->symbol.the_bfd = abfd;