From e6809d1a692da3b1127610b527f636743458274b Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Mon, 31 Mar 2003 08:28:23 +0000 Subject: 2003-03-31 Havoc Pennington * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to define DBUS_SYSTEM_BUS_PATH as we want to compile in the same final location that lands in the config file * bus/config-loader-expat.c (bus_config_load): fix type of XML_Parser variable * doc/TODO: remove TODO item for dbus_bus_get() * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock --- dbus/dbus-bus.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'dbus/dbus-bus.c') diff --git a/dbus/dbus-bus.c b/dbus/dbus-bus.c index 22af3dab..d65a3f0f 100644 --- a/dbus/dbus-bus.c +++ b/dbus/dbus-bus.c @@ -117,7 +117,11 @@ bus_data_free (void *data) BusData *bd = data; if (bd->connection) - *bd->connection = NULL; + { + _DBUS_LOCK (bus); + *bd->connection = NULL; + _DBUS_UNLOCK (bus); + } dbus_free (bd->base_service); dbus_free (bd); -- cgit