diff --git a/security/sandbox/linux/broker/SandboxBrokerPolicyFactory.cpp b/security/sandbox/linux/broker/SandboxBrokerPolicyFactory.cpp index 05b422c3f801..27d3a0abad36 100644 --- a/security/sandbox/linux/broker/SandboxBrokerPolicyFactory.cpp +++ b/security/sandbox/linux/broker/SandboxBrokerPolicyFactory.cpp @@ -82,7 +82,9 @@ AddMesaSysfsPaths(SandboxBroker::Policy* aPolicy) UniqueFreePtr realSysPath(realpath(sysPath.get(), nullptr)); if (realSysPath) { nsPrintfCString ueventPath("%s/uevent", realSysPath.get()); + nsPrintfCString configPath("%s/config", realSysPath.get()); aPolicy->AddPath(rdonly, ueventPath.get()); + aPolicy->AddPath(rdonly, configPath.get()); } } }