mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-20 15:48:54 +02:00
Don't modify the current locale. (#389300)
2006-12-27 Matthias Clasen <mclasen@redhat.com> * glib/gunicollate.c (g_utf8_collate_key): Don't modify the current locale. (#389300)
This commit is contained in:
committed by
Matthias Clasen
parent
33acbf5b76
commit
d1be55cccb
@@ -213,8 +213,6 @@ g_utf8_collate_key (const gchar *str,
|
||||
|
||||
str_norm = _g_utf8_normalize_wc (str, len, G_NORMALIZE_ALL_COMPOSE);
|
||||
|
||||
setlocale (LC_COLLATE, "");
|
||||
|
||||
xfrm_len = wcsxfrm (NULL, (wchar_t *)str_norm, 0);
|
||||
result_wc = g_new (wchar_t, xfrm_len + 1);
|
||||
wcsxfrm (result_wc, (wchar_t *)str_norm, xfrm_len + 1);
|
||||
|
Reference in New Issue
Block a user