From e1f9ae3647a4d00dc140fa8bd2d0e2178dcec453 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Tue, 3 Mar 2020 10:41:18 +0100 Subject: [PATCH] mumble/Overlay.cpp: Explicitly set access permission for the created overlay-pipe --- src/mumble/Overlay.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mumble/Overlay.cpp b/src/mumble/Overlay.cpp index a764c7ad8..11023d9b9 100644 --- a/src/mumble/Overlay.cpp +++ b/src/mumble/Overlay.cpp @@ -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");