We should not try to neither auto-resume nor write when state is set to NONE as this is case when we're being closed and it's ok do ignore write request. --- android/hal-audio.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/android/hal-audio.c b/android/hal-audio.c index efdf823..766327b 100644 --- a/android/hal-audio.c +++ b/android/hal-audio.c @@ -831,6 +831,10 @@ static ssize_t out_write(struct audio_stream_out *stream, const void *buffer, { struct a2dp_stream_out *out = (struct a2dp_stream_out *) stream; + /* just return in case we're closing */ + if (out->audio_state == AUDIO_A2DP_STATE_NONE) + return -1; + /* We can auto-start only from standby */ if (out->audio_state == AUDIO_A2DP_STATE_STANDBY) { DBG("stream in standby, auto-start"); -- 1.8.5.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