From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> When an abort is received all setup callbacks should return an error. --- audio/a2dp.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/audio/a2dp.c b/audio/a2dp.c index cc94fbe..094476e 100644 --- a/audio/a2dp.c +++ b/audio/a2dp.c @@ -1179,6 +1179,7 @@ static gboolean abort_ind(struct avdtp *session, struct avdtp_local_sep *sep, void *user_data) { struct a2dp_sep *a2dp_sep = user_data; + struct a2dp_setup *setup; if (a2dp_sep->type == AVDTP_SEP_TYPE_SINK) DBG("Sink %p: Abort_Ind", sep); @@ -1187,6 +1188,14 @@ static gboolean abort_ind(struct avdtp *session, struct avdtp_local_sep *sep, a2dp_sep->stream = NULL; + setup = find_setup_by_session(session); + if (!setup) + return TRUE; + + finalize_setup_errno(setup, -ECONNRESET, finalize_suspend, + finalize_resume, + finalize_config); + return TRUE; } -- 1.7.10.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