aboutsummaryrefslogtreecommitdiffstats
path: root/testing/thunderbird/sandbox-fork.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/thunderbird/sandbox-fork.patch')
-rw-r--r--testing/thunderbird/sandbox-fork.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/testing/thunderbird/sandbox-fork.patch b/testing/thunderbird/sandbox-fork.patch
deleted file mode 100644
index 328943cb001..00000000000
--- a/testing/thunderbird/sandbox-fork.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-make SYS_fork non-fatal, musl uses it for fork(2)
-
---- a/security/sandbox/linux/SandboxFilter.cpp
-+++ b/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: