Message ID | 20201109192742.42207-1-inga.stotland@intel.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Luiz Von Dentz |
Headers | show |
Series | [BlueZ] client: Remove reference to g_steal_pointer() | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=380609 ---Test result--- ############################## Test: CheckPatch - PASS ############################## Test: CheckGitLint - PASS ############################## Test: CheckBuild - PASS ############################## Test: MakeCheck - PASS --- Regards, Linux Bluetooth
Hi Inga, On Mon, Nov 9, 2020 at 11:50 AM <bluez.test.bot@gmail.com> wrote: > > This is automated email and please do not reply to this email! > > Dear submitter, > > Thank you for submitting the patches to the linux bluetooth mailing list. > This is a CI test results with your patch series: > PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=380609 > > ---Test result--- > > ############################## > Test: CheckPatch - PASS > > ############################## > Test: CheckGitLint - PASS > > ############################## > Test: CheckBuild - PASS > > ############################## > Test: MakeCheck - PASS > > > > --- > Regards, > Linux Bluetooth Applied, thanks.
diff --git a/client/adv_monitor.c b/client/adv_monitor.c index 90ab0be09..8e81857af 100644 --- a/client/adv_monitor.c +++ b/client/adv_monitor.c @@ -254,10 +254,16 @@ void adv_monitor_add_manager(DBusConnection *conn, GDBusProxy *proxy) void adv_monitor_remove_manager(DBusConnection *conn) { - if (manager.supported_types != NULL) - g_slist_free(g_steal_pointer(&(manager.supported_types))); - if (manager.supported_features != NULL) - g_slist_free(g_steal_pointer(&(manager.supported_features))); + if (manager.supported_types != NULL) { + g_slist_free(manager.supported_types); + manager.supported_types = NULL; + } + + if (manager.supported_features != NULL) { + g_slist_free(manager.supported_features); + manager.supported_features = NULL; + } + manager.proxy = NULL; manager.app_registered = FALSE; }