diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-06-19 14:44:33 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-06-19 23:11:57 +0200 |
commit | 37e9dc814636915afb88d0779e5e897e90e7b8c0 (patch) | |
tree | 5c7cdc61525effc406d27baa24102fcdf9e6283d /intl/dcigettext.c | |
parent | 81b82fb966ffbd94353f793ad17116c6088dedd9 (diff) | |
download | glibc-37e9dc814636915afb88d0779e5e897e90e7b8c0.tar glibc-37e9dc814636915afb88d0779e5e897e90e7b8c0.tar.gz glibc-37e9dc814636915afb88d0779e5e897e90e7b8c0.tar.bz2 glibc-37e9dc814636915afb88d0779e5e897e90e7b8c0.zip |
DCIGETTEXT: Do not make copy of localename
Diffstat (limited to 'intl/dcigettext.c')
-rw-r--r-- | intl/dcigettext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intl/dcigettext.c b/intl/dcigettext.c index 3843b7cbdf..d97746cae5 100644 --- a/intl/dcigettext.c +++ b/intl/dcigettext.c @@ -551,7 +551,7 @@ DCIGETTEXT (const char *domainname, const char *msgid1, const char *msgid2, #ifdef HAVE_PER_THREAD_LOCALE # ifndef IN_LIBGLOCALE # ifdef _LIBC - localename = strdupa (__current_locale_name (category)); + localename = __current_locale_name (category); # else categoryname = category_to_name (category); # define CATEGORYNAME_INITIALIZED |