diff options
author | Alan Modra <amodra@gmail.com> | 2009-11-18 12:14:00 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-11-18 12:14:00 +0000 |
commit | 8cddccd3f191a62607325235ffd55cb37c1120bf (patch) | |
tree | 2870ba2b73fdf9d3db314f6c14b52fe5802095a8 /bfd/targets.c | |
parent | 3cb4feec44a041e2fd00963eac7bb550344485b1 (diff) | |
download | gdb-8cddccd3f191a62607325235ffd55cb37c1120bf.zip gdb-8cddccd3f191a62607325235ffd55cb37c1120bf.tar.gz gdb-8cddccd3f191a62607325235ffd55cb37c1120bf.tar.bz2 |
* targets.c: Don't include alloca-conf.h.
(bfd_get_target_info): Don't use alloca.
Diffstat (limited to 'bfd/targets.c')
-rw-r--r-- | bfd/targets.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/targets.c b/bfd/targets.c index 0bcc906..31ec42f 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) { |