Don't crash on orphan URIs

This commit is contained in:
2022-08-08 15:03:22 +02:00
parent e6341e59bb
commit 4927c8c692
2 changed files with 7 additions and 2 deletions

4
fiv.c
View File

@@ -634,7 +634,11 @@ switch_to_view(void)
static gchar *
parent_uri(GFile *child_file)
{
// The empty URI results in a convenient dummy GFile implementation.
GFile *parent = g_file_get_parent(child_file);
if (!parent)
return g_strdup("");
gchar *parent_uri = g_file_get_uri(parent);
g_object_unref(parent);
return parent_uri;