mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
pipewire-pulse: escape the address string
It can contain special chars
This commit is contained in:
parent
0bf1aa8f45
commit
1bd90dc666
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ int main(int argc, char *argv[])
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
args = spa_aprintf("server.address=%s", address);
|
args = spa_aprintf("server.address=\"%s\"", address);
|
||||||
if (pw_context_load_module(context,
|
if (pw_context_load_module(context,
|
||||||
"libpipewire-module-protocol-pulse",
|
"libpipewire-module-protocol-pulse",
|
||||||
args, NULL) == NULL) {
|
args, NULL) == NULL) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue