void-packages/srcpkgs/firefox-esr/patches/sandbox-fork.patch
Jürgen Buchmüller 8e86987d56 firefox-esr: update to 78.4.0
[ci skip]
2020-11-06 21:19:35 +01:00

13 lines
393 B
Diff

make SYS_fork non-fatal, musl uses it for fork(2)
--- security/sandbox/linux/SandboxFilter.cpp
+++ security/sandbox/linux/SandboxFilter.cpp
@@ -1253,6 +1253,8 @@
// usually do something reasonable on error.
case __NR_clone:
return ClonePolicy(Error(EPERM));
+ case __NR_fork:
+ return Error(ENOSYS);
# ifdef __NR_fadvise64
case __NR_fadvise64: