diff options
Diffstat (limited to 'ld/pe-dll.c')
-rw-r--r-- | ld/pe-dll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 31beac8..76a1ce3 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -2844,7 +2844,7 @@ pe_find_cdecl_alias_match (struct bfd_link_info *linfo, char *name) struct key_value *kv; struct key_value key; char *at, *lname = (char *) alloca (strlen (name) + 3); - + strcpy (lname, name); at = strchr (lname + (lname[0] == '@'), '@'); @@ -2925,7 +2925,7 @@ pe_find_cdecl_alias_match (struct bfd_link_info *linfo, char *name) if (h->type == bfd_link_hash_undefined) return h; } - + return NULL; } |