From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Unregister pdu handlers on shutdown. --- android/avctp.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/android/avctp.c b/android/avctp.c index 8f35403..8681cb0 100644 --- a/android/avctp.c +++ b/android/avctp.c @@ -1462,6 +1462,15 @@ void avctp_shutdown(struct avctp *session) if (session->browsing) avctp_channel_destroy(session->browsing); + if (session->passthrough_id > 0) + avctp_unregister_pdu_handler(session, session->passthrough_id); + + if (session->unit_id > 0) + avctp_unregister_pdu_handler(session, session->unit_id); + + if (session->subunit_id > 0) + avctp_unregister_pdu_handler(session, session->subunit_id); + if (session->control) avctp_channel_destroy(session->control); -- 1.8.3.2 -- 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