Message ID | 7e5753e471757d50569802ddb19546768dea07f5.1688326228.git.pav@iki.fi |
---|---|
State | New |
Headers | show |
Series | [BlueZ,1/2] transport: handle BAP Enabling state correctly when resuming | expand |
diff --git a/src/shared/bap.c b/src/shared/bap.c index 13c76afe6..72ce67c08 100644 --- a/src/shared/bap.c +++ b/src/shared/bap.c @@ -4303,7 +4303,7 @@ static struct bt_bap_req *bap_req_new(struct bt_bap_stream *stream, static unsigned int id; req = new0(struct bt_bap_req, 1); - req->id = ++id; + req->id = ++id ? id : ++id; req->stream = stream; req->op = op; req->iov = util_iov_dup(iov, len);