]> git.meshlink.io Git - catta/blobdiff - avahi-daemon/dbus-async-address-resolver.c
work around a limitation in Gentoo's DBUS build (which is compiled with --disable...
[catta] / avahi-daemon / dbus-async-address-resolver.c
index f51d205e821103b1aaaf7240be3a7e27cd22c447..f05af8fdb950c4e6e69032ffedac902a4bbd3d90 100644 (file)
@@ -38,7 +38,12 @@ void avahi_dbus_async_address_resolver_free(AsyncAddressResolverInfo *i) {
 
     if (i->address_resolver)
         avahi_s_address_resolver_free(i->address_resolver);
-    dbus_connection_unregister_object_path(server->bus, i->path);
+
+    if (i->path) {
+        dbus_connection_unregister_object_path(server->bus, i->path);
+        avahi_free(i->path);
+    }
+    
     AVAHI_LLIST_REMOVE(AsyncAddressResolverInfo, async_address_resolvers, i->client->async_address_resolvers, i);
 
     i->client->n_objects--;