Fix non-initialized variable in glib/gvariant-parser.c

This commit is contained in:
Loic Le Page 2022-01-19 19:01:55 +01:00 committed by Loïc Le Page
parent de8ab33cb5
commit 28fa4325a4

View File

@ -1564,7 +1564,7 @@ unicode_unescape (const gchar *src,
{
gchar buffer[9];
guint64 value = 0;
gchar *end;
gchar *end = NULL;
gsize n_valid_chars;
(*src_ofs)++;