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:
Adhemerval Zanella 2022-08-10 17:56:13 -03:00
parent 3562236cf7
commit 6bdf96bffa
1 changed files with 1 additions and 1 deletions

View File

@ -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. */