* linker.c (_bfd_generic_link_add_archive_symbols): Replace alloca()

by bfd_malloc().
This commit is contained in:
Thiemo Seufer 2001-08-24 03:56:28 +00:00
parent d586919e5f
commit f6be24f9a4
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-08-24 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
* linker.c (_bfd_generic_link_add_archive_symbols): Replace alloca()
by bfd_malloc().
2001-08-23 Andreas Jaeger <aj@suse.de>
* elf64-x86-64.c (elf64_x86_64_check_relocs): Set DF_TEXTREL if

View File

@ -1007,9 +1007,13 @@ _bfd_generic_link_add_archive_symbols (abfd, info, checkfn)
let's look for its import thunk */
if (info->pei386_auto_import)
{
char *buf = alloca (strlen (h->root.string) + 10);
char *buf = (char *) bfd_malloc (strlen (h->root.string) + 10);
if (buf == NULL)
return false;
sprintf (buf, "__imp_%s", h->root.string);
arh = archive_hash_lookup (&arsym_hash, buf, false, false);
free(buf);
}
if (arh == (struct archive_hash_entry *) NULL)
{