mumble/Overlay.cpp: Explicitly set access permission for the created overlay-pipe

This commit is contained in:
Robert Adam 2020-03-03 10:41:18 +01:00
parent ec51a41cfe
commit e1f9ae3647

View File

@ -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");