* config/obj-coff.c (obj_coff_init_stab_section): Make the

stabstr_name allocation permanent, as it will be referenced from
the section hash.
This commit is contained in:
DJ Delorie 2002-01-22 01:09:49 +00:00
parent b3ff9d9a65
commit 23deb9235a
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2002-01-21 DJ Delorie <dj@redhat.com>
* config/obj-coff.c (obj_coff_init_stab_section): Make the
stabstr_name allocation permanent, as it will be referenced from
the section hash.
2002-01-21 Jason Thorpe <thorpej@wasabisystems.com>
* configure.in (ia64-*-netbsd*): New target.

View File

@ -1631,7 +1631,7 @@ obj_coff_init_stab_section (seg)
/* Zero it out. */
memset (p, 0, 12);
as_where (&file, (unsigned int *) NULL);
stabstr_name = (char *) alloca (strlen (seg->name) + 4);
stabstr_name = (char *) xmalloc (strlen (seg->name) + 4);
strcpy (stabstr_name, seg->name);
strcat (stabstr_name, "str");
stroff = get_stab_string_offset (file, stabstr_name);