From b9def774e6f889373bf1a47ff2044add7ced9658 Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Wed, 11 Aug 2021 13:56:24 +0200 Subject: Updated to 91.0 --- mozilla-1715254.patch | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 mozilla-1715254.patch (limited to 'mozilla-1715254.patch') diff --git a/mozilla-1715254.patch b/mozilla-1715254.patch deleted file mode 100644 index 662a9d8..0000000 --- a/mozilla-1715254.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff --git a/security/sandbox/linux/SandboxFilter.cpp b/security/sandbox/linux/SandboxFilter.cpp ---- a/security/sandbox/linux/SandboxFilter.cpp -+++ b/security/sandbox/linux/SandboxFilter.cpp -@@ -858,6 +858,9 @@ - case __NR_clone: - return ClonePolicy(InvalidSyscall()); - -+ case __NR_clone3: -+ return Error(ENOSYS); -+ - // More thread creation. - #ifdef __NR_set_robust_list - case __NR_set_robust_list: -@@ -1504,6 +1507,9 @@ - case __NR_clone: - return ClonePolicy(Error(EPERM)); - -+ case __NR_clone3: -+ return Error(ENOSYS); -+ - # ifdef __NR_fadvise64 - case __NR_fadvise64: - return Allow(); - -- cgit