summaryrefslogtreecommitdiff
path: root/firefox-crashreporter-build.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-08-11 13:56:24 +0200
committerMartin Stransky <stransky@redhat.com>2021-08-11 13:56:24 +0200
commitb9def774e6f889373bf1a47ff2044add7ced9658 (patch)
treea6ff51d95ae35215dff2382e5ccb912f27689b2d /firefox-crashreporter-build.patch
parentFixed typo at with-unsigned-addon-scopes (diff)
downloadlibrewolf-fedora-ff-b9def774e6f889373bf1a47ff2044add7ced9658.tar.gz
librewolf-fedora-ff-b9def774e6f889373bf1a47ff2044add7ced9658.tar.bz2
librewolf-fedora-ff-b9def774e6f889373bf1a47ff2044add7ced9658.zip
Updated to 91.0
Diffstat (limited to 'firefox-crashreporter-build.patch')
-rw-r--r--firefox-crashreporter-build.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/firefox-crashreporter-build.patch b/firefox-crashreporter-build.patch
deleted file mode 100644
index 0c1bc37..0000000
--- a/firefox-crashreporter-build.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -up firefox-87.0/toolkit/crashreporter/breakpad-client/linux/handler/exception_handler.cc.old firefox-87.0/toolkit/crashreporter/breakpad-client/linux/handler/exception_handler.cc
---- firefox-87.0/toolkit/crashreporter/breakpad-client/linux/handler/exception_handler.cc.old 2021-03-25 19:07:12.920421009 +0100
-+++ firefox-87.0/toolkit/crashreporter/breakpad-client/linux/handler/exception_handler.cc 2021-03-25 19:06:45.496596019 +0100
-@@ -149,7 +149,7 @@ void InstallAlternateStackLocked() {
- // SIGSTKSZ may be too small to prevent the signal handlers from overrunning
- // the alternative stack. Ensure that the size of the alternative stack is
- // large enough.
-- static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ);
-+ static const unsigned kSigStackSize = (16384 > SIGSTKSZ) ? 16384 : SIGSTKSZ;
-
- // Only set an alternative stack if there isn't already one, or if the current
- // one is too small.
bgstack15