From 21657ea2af77d9c6faad09248f1934e2fba72c95 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 15 Sep 2021 15:50:39 +0200 Subject: [PATCH] remote-node: improve node io tag Set the second tag field to INVALID to separate the node io areas from the port io areas. --- src/modules/module-client-node/remote-node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-client-node/remote-node.c b/src/modules/module-client-node/remote-node.c index c47ec6b97..e7315a122 100644 --- a/src/modules/module-client-node/remote-node.c +++ b/src/modules/module-client-node/remote-node.c @@ -433,7 +433,7 @@ client_node_set_io(void *object, struct pw_proxy *proxy = (struct pw_proxy*)data->client_node; struct pw_memmap *old, *mm; void *ptr; - uint32_t tag[5] = { data->remote_id, id, }; + uint32_t tag[5] = { data->remote_id, SPA_ID_INVALID, id, }; int res; old = pw_mempool_find_tag(data->pool, tag, sizeof(tag));