In bap_req_new, use same pattern as elsewhere to not use zero as
a valid id.
---
src/shared/bap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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);
--
2.41.0