859ad6e039
* view and manage web certificates more easily on the new about:certificate page * improvements in accessibility * significant improvements to JavaScript debugging MFSA 2020-20 (bsc#1172402) * CVE-2020-12399 (bmo#1631576) Timing attack on DSA signatures in NSS library (fixed with external NSS >= 3.52.1) * CVE-2020-12405 (bmo#1631618) Use-after-free in SharedWorkerService * CVE-2020-12406 (bmo#1639590) JavaScript type confusion with NativeTypes * CVE-2020-12407 (bmo#1637112) WebRender leaking GPU memory when using border-image CSS directive * CVE-2020-12408 (bmo#1623888) URL spoofing when using IP addresses * CVE-2020-12409 (bmo#1619305, bmo#1632717) Memory safety bugs fixed in Firefox 77 and Firefox ESR 68.9 * CVE-2020-12411 (bmo#1620972, bmo#1625333) Memory safety bugs fixed in Firefox 77 - requires * NSS >= 3.52.1 * rust-cbindgen >= 1.14.1 * clang >= 5 - added mozilla-bmo1634646.patch as part of fixing PGO build (still not working) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=830
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
# HG changeset patch
|
|
# User Wolfgang Rosenauer <wr@rosenauer.org>
|
|
# Parent 43820d9e289abee98a2e3cdb4314848de3bc8622
|
|
|
|
diff --git a/build/pgo/profileserver.py b/build/pgo/profileserver.py
|
|
--- a/build/pgo/profileserver.py
|
|
+++ b/build/pgo/profileserver.py
|
|
@@ -127,17 +127,17 @@ if __name__ == '__main__':
|
|
# Bug 1553850 considers fixing this.
|
|
env["MOZ_DISABLE_CONTENT_SANDBOX"] = "1"
|
|
env["MOZ_DISABLE_RDD_SANDBOX"] = "1"
|
|
|
|
# Ensure different pids write to different files
|
|
env["LLVM_PROFILE_FILE"] = "default_%p_random_%m.profraw"
|
|
|
|
# Write to an output file if we're running in automation
|
|
- process_args = {}
|
|
+ process_args = {'universal_newlines': True}
|
|
if 'UPLOAD_PATH' in env:
|
|
process_args['logfile'] = os.path.join(env['UPLOAD_PATH'], 'profile-run-1.log')
|
|
|
|
# Run Firefox a first time to initialize its profile
|
|
runner = FirefoxRunner(profile=profile,
|
|
binary=binary,
|
|
cmdargs=['data:text/html,<script>Quitter.quit()</script>'],
|
|
env=env,
|