diff options
Diffstat (limited to 'binutils/dlltool.c')
-rw-r--r-- | binutils/dlltool.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/binutils/dlltool.c b/binutils/dlltool.c index 2c3aa6d..a24a552 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -2131,8 +2131,9 @@ xlate (const char *name) char *p; name += lead_at; - p = strchr (name, '@'); - if (p) + /* PR 9766: Look for the last @ sign in the name. */ + p = strrchr (name, '@'); + if (p && ISDIGIT (p[1])) *p = 0; } return name; |