summaryrefslogtreecommitdiff
path: root/mozilla-1673202.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-01-22 11:21:26 +0100
committerMartin Stransky <stransky@redhat.com>2021-01-22 11:21:26 +0100
commit56bb57adacd71287192ed91d477746193add0ecc (patch)
tree731ae5a894afb045b3c882129915b87970bd65a0 /mozilla-1673202.patch
parentMerge branch 'master' into f33 (diff)
parentRemoved mzbz#1645695 as it causes a popup regression (diff)
downloadlibrewolf-fedora-ff-56bb57adacd71287192ed91d477746193add0ecc.tar.gz
librewolf-fedora-ff-56bb57adacd71287192ed91d477746193add0ecc.tar.bz2
librewolf-fedora-ff-56bb57adacd71287192ed91d477746193add0ecc.zip
Merge branch 'master' into f33
Diffstat (limited to 'mozilla-1673202.patch')
-rw-r--r--mozilla-1673202.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/mozilla-1673202.patch b/mozilla-1673202.patch
deleted file mode 100644
index b8695a1..0000000
--- a/mozilla-1673202.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -up firefox-82.0/security/sandbox/linux/SandboxFilter.cpp.1673202 firefox-82.0/security/sandbox/linux/SandboxFilter.cpp
---- firefox-82.0/security/sandbox/linux/SandboxFilter.cpp.1673202 2020-10-27 10:40:54.903158025 +0100
-+++ firefox-82.0/security/sandbox/linux/SandboxFilter.cpp 2020-10-27 10:43:19.024883597 +0100
-@@ -246,7 +246,11 @@ class SandboxPolicyCommon : public Sandb
-
- if (fd != AT_FDCWD && (flags & AT_EMPTY_PATH) != 0 &&
- strcmp(path, "") == 0) {
-- return ConvertError(fstatsyscall(fd, buf));
-+#ifdef __NR_fstat64
-+ return DoSyscall(__NR_fstat64, fd, buf);
-+#else
-+ return DoSyscall(__NR_fstat, fd, buf);
-+#endif
- }
-
- if (fd != AT_FDCWD && path[0] != '/') {
bgstack15