mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-18 06:43:36 +08:00
mmalloc() -> xmmalloc()
This commit is contained in:
parent
aac7f4eaf2
commit
753edfefb3
@ -1,5 +1,8 @@
|
||||
2001-12-02 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* jv-lang.c (get_java_class_symtab): Use xmmalloc instead of
|
||||
mmalloc.
|
||||
|
||||
* coffread.c, dbxread.c, elfread.c, hp-psymtab-read.c, hpread.c,
|
||||
nlmread.c, objfiles.c, os9kread.c, somread.c, source.c, symfile.c,
|
||||
symmisc.c, xcoffread.c: Use xmfree instead of mfree.
|
||||
|
@ -115,10 +115,9 @@ get_java_class_symtab (void)
|
||||
|
||||
/* Allocate GLOBAL_BLOCK. This has to be relocatable. */
|
||||
class_symtab_space = 128;
|
||||
bl = (struct block *)
|
||||
mmalloc (objfile->md,
|
||||
sizeof (struct block)
|
||||
+ ((class_symtab_space - 1) * sizeof (struct symbol *)));
|
||||
bl = xmmalloc (objfile->md,
|
||||
sizeof (struct block)
|
||||
+ ((class_symtab_space - 1) * sizeof (struct symbol *)));
|
||||
*bl = *BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
|
||||
BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK) = bl;
|
||||
class_symtab->free_ptr = (char *) bl;
|
||||
|
Loading…
Reference in New Issue
Block a user