Fix non-initialized variable and signed/unsigned mismatch in glib/gunicollate.c

This commit is contained in:
Loic Le Page 2022-01-19 19:01:10 +01:00 committed by Loïc Le Page
parent 979b9af242
commit e8761bb4df

View File

@ -415,7 +415,7 @@ g_utf8_collate_key (const gchar *str,
return result;
#else
gsize xfrm_len;
gsize xfrm_len = 0;
const gchar *charset;
gchar *str_norm;