* targets.c: Don't include alloca-conf.h.

(bfd_get_target_info): Don't use alloca.
This commit is contained in:
Alan Modra 2009-11-18 12:14:00 +00:00
parent 3cb4feec44
commit 8cddccd3f1
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2009-11-18 Alan Modra <amodra@bigpond.net.au>
* targets.c: Don't include alloca-conf.h.
(bfd_get_target_info): Don't use alloca.
2009-11-17 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10955

View File

@ -25,7 +25,6 @@
#include "bfd.h"
#include "libbfd.h"
#include "fnmatch.h"
#include "alloca-conf.h"
/*
It's okay to see some:
@ -1523,7 +1522,8 @@ bfd_get_target_info (const char *target_name, bfd *abfd,
for triplets like "pe-arm-wince-little". */
if (!_bfd_find_arch_match (tname, arches, def_target_arch))
{
char *new_tname = (char *) alloca (strlen (hyp) + 1);
char new_tname[50];
strcpy (new_tname, hyp);
while ((hyp = strrchr (new_tname, '-')) != NULL)
{