From 7443244740724babd575943ee33c45da326afbe7 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 17 Nov 2009 09:37:31 -0800 Subject: Handle LC_GLOBAL_LOCALE in duplocale. --- locale/duplocale.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'locale/duplocale.c') diff --git a/locale/duplocale.c b/locale/duplocale.c index 6178259..63513c5 100644 --- a/locale/duplocale.c +++ b/locale/duplocale.c @@ -1,5 +1,5 @@ /* Duplicate handle for selection of locales. - Copyright (C) 1997,2000,2001,2002,2005,2008 Free Software Foundation, Inc. + Copyright (C) 1997,2000-2002,2005,2008,2009 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. @@ -37,6 +37,10 @@ __duplocale (__locale_t dataset) if (dataset == _nl_C_locobj_ptr) return dataset; + /* Handle a special value. */ + if (dataset == LC_GLOBAL_LOCALE) + dataset = &_nl_global_locale; + __locale_t result; int cnt; size_t names_len = 0; -- cgit v1.1