mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-09 18:54:04 +02:00
Fix non-initialized variable and signed/unsigned mismatch in glib/gunicollate.c
This commit is contained in:
committed by
Loïc Le Page
parent
979b9af242
commit
e8761bb4df
@@ -415,7 +415,7 @@ g_utf8_collate_key (const gchar *str,
|
|||||||
return result;
|
return result;
|
||||||
#else
|
#else
|
||||||
|
|
||||||
gsize xfrm_len;
|
gsize xfrm_len = 0;
|
||||||
const gchar *charset;
|
const gchar *charset;
|
||||||
gchar *str_norm;
|
gchar *str_norm;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user