Bug 1640612 - Deal with uname() for socket process, r=jld

Differential Revision: https://phabricator.services.mozilla.com/D78148
This commit is contained in:
Kershaw Chang 2020-06-24 20:42:47 +00:00
Родитель 39034e6b47
Коммит c49db2fc38
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1648,6 +1648,10 @@ class SocketProcessSandboxPolicy final : public SandboxPolicyCommon {
CASES_FOR_getegid:
return Allow();
// Bug 1640612
case __NR_uname:
return Allow();
default:
return SandboxPolicyCommon::EvaluateSyscall(sysno);
}