diff options
author | Richard Hughes <richard@hughsie.com> | 2020-10-29 15:40:00 +0000 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2020-11-09 15:40:17 +0000 |
commit | 30b22c0f06970c934b3e6f6ea0328c589548850c (patch) | |
tree | f057682dc620d50c38fa5c9b72a68199993bcba3 | |
parent | f7254ab21d0aa0570fdbae2e0b9eab1374281fa3 (diff) |
Do not crash when calling pk_dbus_get_uid() before D-Bus is setup
Fixes https://github.com/hughsie/PackageKit/issues/436
-rw-r--r-- | src/pk-dbus.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pk-dbus.c b/src/pk-dbus.c index ddd04d4e6..af275eb2a 100644 --- a/src/pk-dbus.c +++ b/src/pk-dbus.c @@ -64,6 +64,10 @@ pk_dbus_get_uid (PkDbus *dbus, const gchar *sender) g_return_val_if_fail (PK_IS_DBUS (dbus), G_MAXUINT); g_return_val_if_fail (sender != NULL, G_MAXUINT); + /* no connection to DBus */ + if (dbus->priv->proxy_uid == NULL) + return G_MAXUINT; + /* set in the test suite */ if (g_strcmp0 (sender, ":org.freedesktop.PackageKit") == 0) { g_debug ("using self-check shortcut"); |