mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
mumble/Overlay.cpp: Explicitly set access permission for the created overlay-pipe
This commit is contained in:
parent
ec51a41cfe
commit
e1f9ae3647
@ -191,6 +191,9 @@ Overlay::Overlay() : QObject() {
|
||||
forceSettings();
|
||||
|
||||
qlsServer = new QLocalServer(this);
|
||||
// Allow anyone to access the pipe in order to communicate with the overlay
|
||||
qlsServer->setSocketOptions(QLocalServer::WorldAccessOption);
|
||||
|
||||
QString pipepath;
|
||||
#ifdef Q_OS_WIN
|
||||
pipepath = QLatin1String("MumbleOverlayPipe");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user