summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Hartmann <stha09@googlemail.com>2020-03-30 13:15:02 +0200
committerMike Gilbert <floppym@gentoo.org>2020-03-30 14:55:35 -0400
commit531575aa3fb1e287e9f18395b101f3884abd0ab0 (patch)
tree760157cd16adcbd64b0ad2c48d4fa319a2db7bf8 /www-client/chromium/files/chromium-83-gcc-range.patch
parentnet-misc/chrony: Enable seccomp filtering when USE=seccomp (diff)
downloadgentoo-531575aa3fb1e287e9f18395b101f3884abd0ab0.tar.gz
gentoo-531575aa3fb1e287e9f18395b101f3884abd0ab0.tar.bz2
gentoo-531575aa3fb1e287e9f18395b101f3884abd0ab0.zip
www-client/chromium: dev channel bump to 83.0.4093.3
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Stephan Hartmann <stha09@googlemail.com> Signed-off-by: Mike Gilbert <floppym@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/15178
Diffstat (limited to 'www-client/chromium/files/chromium-83-gcc-range.patch')
-rw-r--r--www-client/chromium/files/chromium-83-gcc-range.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/www-client/chromium/files/chromium-83-gcc-range.patch b/www-client/chromium/files/chromium-83-gcc-range.patch
new file mode 100644
index 000000000000..f8fb287894ff
--- /dev/null
+++ b/www-client/chromium/files/chromium-83-gcc-range.patch
@@ -0,0 +1,28 @@
+From 895f0d24db74516e2653672a4b5e57757eeba75a Mon Sep 17 00:00:00 2001
+From: Stephan Hartmann <stha09@googlemail.com>
+Date: Sun, 29 Mar 2020 21:03:23 +0000
+Subject: [PATCH] GCC: fix out-of-range constant in status_codes.h
+
+Constant 0x99999999 is not within range of int32_t.
+
+Bug: 819294
+Change-Id: I133b9bb0f1f57a6e1d81f96f39f348b6ea1c7f11
+Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2126227
+Commit-Queue: Ted Meyer <tmathmeyer@chromium.org>
+Reviewed-by: Ted Meyer <tmathmeyer@chromium.org>
+Cr-Commit-Position: refs/heads/master@{#754364}
+---
+
+diff --git a/media/base/status_codes.h b/media/base/status_codes.h
+index ccac030..219defb 100644
+--- a/media/base/status_codes.h
++++ b/media/base/status_codes.h
+@@ -69,7 +69,7 @@
+ kVaapiFailedAcceleratorCreation = 0x00000509,
+
+ // Special codes
+- kGenericErrorPleaseRemove = 0x99999999,
++ kGenericErrorPleaseRemove = 0x79999999,
+ kCodeOnlyForTesting = std::numeric_limits<StatusCodeType>::max(),
+ kMaxValue = kCodeOnlyForTesting,
+ };