--- mcap/mcap.c | 31 ++++++++++++++++++++++++++++++- 1 files changed, 30 insertions(+), 1 deletions(-) diff --git a/mcap/mcap.c b/mcap/mcap.c index 8551ddf..0bc5035 100644 --- a/mcap/mcap.c +++ b/mcap/mcap.c @@ -603,5 +603,34 @@ struct mcap_instance *mcap_create_instance(struct btd_adapter *btd_adapter, void mcap_release_instance(struct mcap_instance *ms) { - /* TODO */ + GSList *l; + + if (!ms) + return; + + if (ms->ccio) { + g_io_channel_shutdown(ms->ccio, TRUE, NULL); + g_io_channel_unref(ms->ccio); + ms->ccio = NULL; + } + + if (ms->dcio) { + g_io_channel_shutdown(ms->dcio, TRUE, NULL); + g_io_channel_unref(ms->dcio); + ms->dcio = NULL; + } + + for (l = ms->mcls; l; l = l->next) { + mcap_mcl_shutdown(l->data); + mcap_mcl_unref(l->data); + } + g_slist_free(ms->mcls); + ms->mcls = NULL; + + for (l = ms->cached; l; l = l->next) + mcap_mcl_unref(l->data); + g_slist_free(ms->cached); + ms->cached = NULL; + + g_free(ms); } -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html