From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> This reverts commit 53d3fc3fad5152167458625ad2acf19070cdf26a that leads to always destroy the browsing channel because the callback changes the state. To fix session_browsing_cb naw takes care of destroying the channel if it disconnects. --- profiles/audio/avctp.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/profiles/audio/avctp.c b/profiles/audio/avctp.c index 41e2f46..303427e 100644 --- a/profiles/audio/avctp.c +++ b/profiles/audio/avctp.c @@ -490,10 +490,6 @@ static void avctp_set_state(struct avctp *session, avctp_state_t new_state) break; case AVCTP_STATE_CONNECTED: DBG("AVCTP Connected"); - if (session->browsing) { - avctp_channel_destroy(session->browsing); - session->browsing = NULL; - } break; case AVCTP_STATE_BROWSING_CONNECTING: DBG("AVCTP Browsing Connecting"); @@ -817,6 +813,13 @@ send: failed: DBG("AVCTP Browsing: disconnected"); + avctp_set_state(session, AVCTP_STATE_CONNECTED); + + if (session->browsing) { + avctp_channel_destroy(session->browsing); + session->browsing = NULL; + } + return FALSE; } -- 1.8.1 -- 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