summaryrefslogtreecommitdiff
path: root/mozilla-1651701.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-07-28 10:23:23 +0200
committerMartin Stransky <stransky@redhat.com>2020-07-28 10:23:23 +0200
commitbe0a1649090c725ae502410262a907d7bf3c8c48 (patch)
tree7cabe4de39b50094d53abb4c248f4183021a1af4 /mozilla-1651701.patch
parentnew soures (diff)
parentUse python3 instead of python2 for build (diff)
downloadlibrewolf-fedora-ff-be0a1649090c725ae502410262a907d7bf3c8c48.tar.gz
librewolf-fedora-ff-be0a1649090c725ae502410262a907d7bf3c8c48.tar.bz2
librewolf-fedora-ff-be0a1649090c725ae502410262a907d7bf3c8c48.zip
Update to 79.0
Diffstat (limited to 'mozilla-1651701.patch')
-rw-r--r--mozilla-1651701.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/mozilla-1651701.patch b/mozilla-1651701.patch
deleted file mode 100644
index 7bcea2e..0000000
--- a/mozilla-1651701.patch
+++ /dev/null
@@ -1,18 +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
-@@ -711,6 +711,13 @@
- return Error(EPERM);
- #endif
-
-+ // Bug 1651701: an API for restartable atomic sequences and
-+ // per-CPU data; exposing information about CPU numbers and
-+ // when threads are migrated or preempted isn't great but the
-+ // risk should be relatively low.
-+ case __NR_rseq:
-+ return Allow();
-+
- #ifdef MOZ_ASAN
- // ASAN's error reporter wants to know if stderr is a tty.
- case __NR_ioctl: {
-
bgstack15