diff options
author | Joern Rennecke <joern.rennecke@arc.com> | 1999-06-17 13:26:08 +0000 |
---|---|---|
committer | Joern Rennecke <joern.rennecke@arc.com> | 1999-06-17 13:26:08 +0000 |
commit | 804499b417489b92f436ebdd22e949715e6b2b71 (patch) | |
tree | c6e096eea505999502ddaaabe936fb8eab6063f9 /bfd/dwarf1.c | |
parent | a265ec787f1dbad2093f7dd58d98f9d56565dc52 (diff) | |
download | gdb-804499b417489b92f436ebdd22e949715e6b2b71.tar.gz |
* dwarf1.c (alloc_dwarf1_unit): Allocate using bfd_zalloc.
* (alloc_dwarf1_func): Likewise.
Diffstat (limited to 'bfd/dwarf1.c')
-rw-r--r-- | bfd/dwarf1.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/dwarf1.c b/bfd/dwarf1.c index cbcc26b0035..d87df92c10f 100644 --- a/bfd/dwarf1.c +++ b/bfd/dwarf1.c @@ -140,8 +140,8 @@ alloc_dwarf1_unit (stash) struct dwarf1_debug* stash; { struct dwarf1_unit* x = - (struct dwarf1_unit*) bfd_alloc (stash->abfd, - sizeof (struct dwarf1_unit)); + (struct dwarf1_unit*) bfd_zalloc (stash->abfd, + sizeof (struct dwarf1_unit)); x->prev = stash->lastUnit; stash->lastUnit = x; @@ -157,8 +157,8 @@ alloc_dwarf1_func (stash, aUnit) struct dwarf1_unit* aUnit; { struct dwarf1_func* x = - (struct dwarf1_func*) bfd_alloc (stash->abfd, - sizeof (struct dwarf1_func)); + (struct dwarf1_func*) bfd_zalloc (stash->abfd, + sizeof (struct dwarf1_func)); x->prev = aUnit->func_list; aUnit->func_list = x; |