pulse-server: turn error into info

Receiving a message from an already removed stream should not result in
an error message.

See #1812
This commit is contained in:
Wim Taymans 2021-11-16 12:33:23 +01:00
parent f10b872733
commit af2e7b630a

View file

@ -126,7 +126,8 @@ static int handle_memblock(struct client *client, struct message *msg)
stream = pw_map_lookup(&client->streams, channel); stream = pw_map_lookup(&client->streams, channel);
if (stream == NULL || stream->type == STREAM_TYPE_RECORD) { if (stream == NULL || stream->type == STREAM_TYPE_RECORD) {
res = -EINVAL; pw_log_info("client %p [%s]: received memblock for unknown channel %d",
client, client->name, channel);
goto finish; goto finish;
} }