From 3b480069d21de1be197e1558895c4cdb26e1eb51 Mon Sep 17 00:00:00 2001 From: Jan Ziak <0xe2.0x9a.0x9b@xfce.org> Date: Fri, 4 Feb 2022 19:07:44 +0100 Subject: Fix crashes occurring when GLib rejects to parse the command string Closes: https://gitlab.xfce.org/xfce/xfce4-appfinder/-/issues/57 --- src/appfinder-window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/appfinder-window.c b/src/appfinder-window.c index 26088ad..1d8a305 100644 --- a/src/appfinder-window.c +++ b/src/appfinder-window.c @@ -1804,7 +1804,7 @@ xfce_appfinder_window_execute_command (const gchar *text, if (IS_STRING (text)) { - gchar **argv; + gchar **argv = NULL; gchar **envp; /* expand variables */ -- cgit v1.2.1