mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
jack: ignore port_set_mix INVALID for destroyed ports
This commit is contained in:
parent
4bd421e25e
commit
b13705d6de
1 changed files with 1 additions and 1 deletions
|
|
@ -3252,7 +3252,7 @@ static int client_node_port_set_mix_info(void *data,
|
|||
int res = 0;
|
||||
|
||||
if (p == NULL || !p->valid) {
|
||||
res = -EINVAL;
|
||||
res = peer_id == SPA_ID_INVALID ? 0 : -EINVAL;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue