From 71217526b5dddd885539ee9449cde1955568f620 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Mon, 28 Sep 2020 17:34:14 +0200 Subject: portal: Add missing GError in error path Otherwise we try to error out, but never really finish the DBus invocation. --- src/portal/tracker-portal.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/portal/tracker-portal.c b/src/portal/tracker-portal.c index ff67967c1..4faeaae0b 100644 --- a/src/portal/tracker-portal.c +++ b/src/portal/tracker-portal.c @@ -263,6 +263,11 @@ load_client_configuration (TrackerPortal *portal, if (!graphs) { g_debug ("Service '%s' not found in Tracker policy", service_uri); + g_set_error (error, + G_IO_ERROR, + G_IO_ERROR_NOT_FOUND, + "Service '%s' not found in Tracker policy", + service_uri); return NULL; } -- cgit v1.2.1