* cp-namespace.c (check_one_possible_namespace_symbol): Don't use

obstack_free.
This commit is contained in:
Daniel Jacobowitz 2004-02-09 22:19:26 +00:00
parent 43b54b88e7
commit ec5cdd7559
2 changed files with 17 additions and 10 deletions

View File

@ -1,3 +1,8 @@
2004-02-09 Daniel Jacobowitz <drow@mvista.com>
* cp-namespace.c (check_one_possible_namespace_symbol): Don't use
obstack_free.
2004-02-09 Andrew Cagney <cagney@redhat.com> 2004-02-09 Andrew Cagney <cagney@redhat.com>
* blockframe.c (find_pc_partial_function): If find_pc_overlay * blockframe.c (find_pc_partial_function): If find_pc_overlay

View File

@ -783,14 +783,20 @@ check_one_possible_namespace_symbol (const char *name, int len,
struct objfile *objfile) struct objfile *objfile)
{ {
struct block *block = get_possible_namespace_block (objfile); struct block *block = get_possible_namespace_block (objfile);
char *name_copy = obsavestring (name, len, &objfile->objfile_obstack); char *name_copy = alloca (len + 1);
struct symbol *sym = lookup_block_symbol (block, name_copy, NULL, struct symbol *sym;
VAR_DOMAIN);
memcpy (name_copy, name, len);
name_copy[len] = '\0';
sym = lookup_block_symbol (block, name_copy, NULL, VAR_DOMAIN);
if (sym == NULL) if (sym == NULL)
{ {
struct type *type = init_type (TYPE_CODE_NAMESPACE, 0, 0, struct type *type;
name_copy, objfile); name_copy = obsavestring (name, len, &objfile->objfile_obstack);
type = init_type (TYPE_CODE_NAMESPACE, 0, 0, name_copy, objfile);
TYPE_TAG_NAME (type) = TYPE_NAME (type); TYPE_TAG_NAME (type) = TYPE_NAME (type);
sym = obstack_alloc (&objfile->objfile_obstack, sizeof (struct symbol)); sym = obstack_alloc (&objfile->objfile_obstack, sizeof (struct symbol));
@ -806,11 +812,7 @@ check_one_possible_namespace_symbol (const char *name, int len,
return 0; return 0;
} }
else else
{ return 1;
obstack_free (&objfile->objfile_obstack, name_copy);
return 1;
}
} }
/* Look for a symbol named NAME in all the possible namespace blocks. /* Look for a symbol named NAME in all the possible namespace blocks.