diff options
author | Joe Shaw <joe@novell.com> | 2004-02-24 19:50:25 +0000 |
---|---|---|
committer | Joe Shaw <joe@novell.com> | 2004-02-24 19:50:25 +0000 |
commit | 19b53a0fe61973d8f9a8bbef812d35a1f179ae20 (patch) | |
tree | 605c751c20b63c5b60649144adfe81efc273d39c | |
parent | 1e310695d683560ab5e4318e01d1cc22ff1df8fc (diff) |
2004-02-24 Joe Shaw <joe@ximian.com>
* bus/services.c (bus_registry_acquire_service): We need to pass
in the service name to dbus_set_error() to prevent a crash.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | bus/services.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2004-02-24 Joe Shaw <joe@ximian.com> + + * bus/services.c (bus_registry_acquire_service): We need to pass + in the service name to dbus_set_error() to prevent a crash. + 2003-12-26 Anders Carlsson <andersca@gnome.org> * AUTHORS: Reveal my True identity. diff --git a/bus/services.c b/bus/services.c index dc251b9..ae7b783 100644 --- a/bus/services.c +++ b/bus/services.c @@ -299,7 +299,8 @@ bus_registry_acquire_service (BusRegistry *registry, "to security policies in the configuration file", bus_connection_is_active (connection) ? bus_connection_get_name (connection) : - "(inactive)"); + "(inactive)", + service_name); goto out; } |