Return-Path: From: Michael Janssen To: linux-bluetooth@vger.kernel.org Cc: Michael Janssen Subject: [BlueZ v5 06/13] core/advertising: use advertising_data Date: Wed, 25 Mar 2015 16:00:54 -0700 Message-Id: <1427324461-27651-7-git-send-email-jamuraa@chromium.org> In-Reply-To: <1427324461-27651-1-git-send-email-jamuraa@chromium.org> References: <1427324461-27651-1-git-send-email-jamuraa@chromium.org> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Start using the newly introduced struct advertising_data API. --- src/advertising.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/advertising.c b/src/advertising.c index 9b82b40..9ac39bf 100644 --- a/src/advertising.c +++ b/src/advertising.c @@ -32,6 +32,7 @@ #include "dbus-common.h" #include "error.h" #include "log.h" +#include "src/shared/advertising-data.h" #include "src/shared/queue.h" #include "src/shared/util.h" @@ -55,6 +56,7 @@ struct advertisement { DBusMessage *reg; uint8_t type; /* Advertising type */ bool published; + struct advertising_data *data; }; static bool match_advertisement_path(const void *a, const void *b) @@ -74,8 +76,9 @@ static void advertisement_free(void *data) g_dbus_client_unref(ad->client); } - if (ad->proxy) - g_dbus_proxy_unref(ad->proxy); + advertising_data_unref(ad->data); + + g_dbus_proxy_unref(ad->proxy); if (ad->owner) g_free(ad->owner); @@ -251,6 +254,10 @@ static struct advertisement *advertisement_create(DBusConnection *conn, ad->reg = dbus_message_ref(msg); + ad->data = advertising_data_new(); + if (!ad->data) + goto fail; + return ad; fail: -- 2.2.0.rc0.207.ga3a616c