From e0ccf082842931fc2a39de16477434968a25813f Mon Sep 17 00:00:00 2001 From: Loic Le Page Date: Wed, 19 Jan 2022 18:57:59 +0100 Subject: [PATCH] Fix non-initialized variable in gio/gsettings-tool.c --- gio/gsettings-tool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gio/gsettings-tool.c b/gio/gsettings-tool.c index 0c7763a39..9352b70f5 100644 --- a/gio/gsettings-tool.c +++ b/gio/gsettings-tool.c @@ -570,8 +570,8 @@ static int gsettings_help (gboolean requested, const gchar *command) { - const gchar *description; - const gchar *synopsis; + const gchar *description = NULL; + const gchar *synopsis = NULL; GString *string; string = g_string_new (NULL);