From 11db00abdf8ec9ec6851fbf83e20dd6a7269f458 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Thu, 13 Jan 2022 13:15:44 +0100 Subject: [PATCH] pipewire: module-protocol-simple: reduce name length A client's name is its IP address or "client ", neither of which are longer than 127 characters. --- src/modules/module-protocol-simple.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-protocol-simple.c b/src/modules/module-protocol-simple.c index 8cc908f51..71fde92d1 100644 --- a/src/modules/module-protocol-simple.c +++ b/src/modules/module-protocol-simple.c @@ -111,7 +111,7 @@ struct client { struct spa_hook core_proxy_listener; struct spa_source *source; - char name[512]; + char name[128]; struct pw_stream *capture; struct spa_hook capture_listener;