Avoid a pointless goto

We can just return here.
This commit is contained in:
Matthias Clasen 2018-08-31 13:23:59 -04:00
parent 21e484731a
commit d4d12171f4

View File

@ -436,7 +436,7 @@ gtk_application_impl_dbus_startup (GtkApplicationImpl *impl,
{
g_debug ("Failed to get an inhibit portal proxy: %s", error->message);
g_clear_error (&error);
goto end;
return;
}
if (register_session)
@ -471,8 +471,6 @@ gtk_application_impl_dbus_startup (GtkApplicationImpl *impl,
g_free (token);
}
}
end:;
}
static void