commit 341492d15df0221392c25f76b7833b539f91c1ea
parent b9be0581e48c9adcc0b4f19be31e1df511555fd5
Author: Lassebq <lassebq.mine@gmail.com>
Date: Sun, 15 Oct 2023 13:02:44 +0300
Missed a variable
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dicons.c b/dicons.c
@@ -171,6 +171,8 @@ static GtkListStore *create_desktop_list(void)
static void launch_default_or_app_for_file(GFile *desktop_file) {
GAppInfo *app;
GKeyFile *keyfile = g_key_file_new ();
+ char* file_uri;
+
if (g_key_file_load_from_file (keyfile, g_file_get_path(desktop_file), G_KEY_FILE_NONE, NULL))
{
app = (GAppInfo*)g_desktop_app_info_new_from_keyfile (keyfile);
@@ -182,7 +184,7 @@ static void launch_default_or_app_for_file(GFile *desktop_file) {
}
}
// Not a .desktop, falling back to xdg open
- char* file_uri = g_file_get_uri(desktop_file);
+ file_uri = g_file_get_uri(desktop_file);
g_app_info_launch_default_for_uri(file_uri, 0, 0);
}