1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-07-29 13:23:31 +02:00

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

@@ -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)++;