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

This commit is contained in:
Loic Le Page
2022-01-19 18:57:29 +01:00
committed by Loïc Le Page
parent f92002e9f5
commit 2c734147cf

View File

@@ -477,8 +477,8 @@ static gint
cmd_help (gboolean requested,
const gchar *command)
{
const gchar *description;
const gchar *synopsis;
const gchar *description = NULL;
const gchar *synopsis = NULL;
gchar *option;
GString *string;