summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/targets.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 88c1e452c4..9bc8a85c79 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -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
diff --git a/bfd/targets.c b/bfd/targets.c
index 0bcc9062d3..31ec42f478 100644
--- a/bfd/targets.c
+++ b/bfd/targets.c
@@ -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)
{