Fix non-initialized variable in gio/gsettings-tool.c

This commit is contained in:
Loic Le Page 2022-01-19 18:57:59 +01:00 committed by Loïc Le Page
parent 979b9af242
commit e0ccf08284

View File

@ -570,8 +570,8 @@ static int
gsettings_help (gboolean requested, gsettings_help (gboolean requested,
const gchar *command) const gchar *command)
{ {
const gchar *description; const gchar *description = NULL;
const gchar *synopsis; const gchar *synopsis = NULL;
GString *string; GString *string;
string = g_string_new (NULL); string = g_string_new (NULL);