mirror of git://sourceware.org/git/glibc.git
intl: Use strcpy on _nl_make_l10nflist
It avoid compiler to turn is on strcpy, which might generate a strcpy PLT call since there is no explicit redirection.
This commit is contained in:
parent
3562236cf7
commit
6bdf96bffa
|
@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
|
|||
}
|
||||
|
||||
*cp++ = '/';
|
||||
stpcpy (cp, filename);
|
||||
strcpy (cp, filename);
|
||||
|
||||
/* Look in list of already loaded domains whether it is already
|
||||
available. */
|
||||
|
|
Loading…
Reference in New Issue