From: Paul Pluzhnikov Date: Fri, 23 Oct 2009 14:36:30 +0000 (+0000) Subject: 2009-10-23 Paul Pluzhnikov X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6a0fa04300e300a1df9cc137f868a91be3854225;p=binutils-gdb.git 2009-10-23 Paul Pluzhnikov * objfiles.c (allocate_objfile): Use xzalloc. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0911bb7b5f8..5ef3f962284 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-10-23 Paul Pluzhnikov + + * objfiles.c (allocate_objfile): Use xzalloc. + 2009-10-23 Hui Zhu * record.c (record_restore): Use phex_nz. @@ -11,6 +15,10 @@ * objfiles.c (allocate_objfile): Remove useless test. Move declaration of last_one to the block that uses it. +2009-10-22 Paul Pluzhnikov + + * record.c (record_restore, cmd_record_save): Fix warnings. + 2009-10-22 Paul Pluzhnikov * disasm.h (DISASSEMBLY_OMIT_FNAME) New define. diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 6082155c5e5..760acedfd61 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -196,8 +196,7 @@ allocate_objfile (bfd *abfd, int flags) { struct objfile *objfile; - objfile = (struct objfile *) xmalloc (sizeof (struct objfile)); - memset (objfile, 0, sizeof (struct objfile)); + objfile = (struct objfile *) xzalloc (sizeof (struct objfile)); objfile->psymbol_cache = bcache_xmalloc (); objfile->macro_cache = bcache_xmalloc (); /* We could use obstack_specify_allocation here instead, but