Diff between a209d69767db0f62d6fdc86a7f73ee4ec749c37f and 01f3ef3cd9d69b56554f5ef6d7ac2a5c40e41393

Changed Files

File Additions Deletions Status
profiles/audio/transport.c +1 -3 modified

Full Patch

diff --git a/profiles/audio/transport.c b/profiles/audio/transport.c
index 9bf3b47..4800570 100644
--- a/profiles/audio/transport.c
+++ b/profiles/audio/transport.c
@@ -1957,7 +1957,6 @@ static guint transport_bap_resume(struct media_transport *transport,
 				struct media_owner *owner)
 {
 	struct bap_transport *bap = transport->data;
-	struct iovec *meta;
 	guint id;
 
 	if (!bap->stream)
@@ -1977,8 +1976,7 @@ static guint transport_bap_resume(struct media_transport *transport,
 		return bap->resume_id;
 	}
 
-	meta = bt_bap_stream_get_metadata(bap->stream);
-	id = bt_bap_stream_enable(bap->stream, bap->linked, meta,
+	id = bt_bap_stream_enable(bap->stream, bap->linked, NULL,
 					bap_enable_complete, owner);
 	if (!id)
 		return 0;