Message ID | 20200320131356.Bluez.v1.1.Ia3d21e293d18f903fa6e54918856e1dd5ffc904f@changeid |
---|---|
State | New |
Headers | show |
Series | [Bluez,v1] avdtp: fix delay report valid states | expand |
diff --git a/profiles/audio/avdtp.c b/profiles/audio/avdtp.c index 0e075f9ff..4b0e63384 100644 --- a/profiles/audio/avdtp.c +++ b/profiles/audio/avdtp.c @@ -1936,6 +1936,7 @@ static gboolean avdtp_delayreport_cmd(struct avdtp *session, stream = sep->stream; if (sep->state != AVDTP_STATE_CONFIGURED && + sep->state != AVDTP_STATE_OPEN && sep->state != AVDTP_STATE_STREAMING) { err = AVDTP_BAD_STATE; goto failed;
From: Archie Pusaka <apusaka@chromium.org> According to AVDTP specification section 6.19, avdtp_delayreport_cmd could also be received when the state of SEP is open. Therefore, updating to accommodate such condition. --- profiles/audio/avdtp.c | 1 + 1 file changed, 1 insertion(+)