From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B3B3158089 for ; Wed, 13 Sep 2023 18:43:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D80972BC016; Wed, 13 Sep 2023 18:43:10 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEC222BC015 for ; Wed, 13 Sep 2023 18:43:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EDB69335CEC for ; Wed, 13 Sep 2023 18:43:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5945A11A3 for ; Wed, 13 Sep 2023 18:43:08 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1694630553.3db4bb06b1adab23426a480c18311365ebc3dcc3.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/files/chromium-114-gcc12.patch X-VCS-Directories: www-client/chromium/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 3db4bb06b1adab23426a480c18311365ebc3dcc3 X-VCS-Branch: master Date: Wed, 13 Sep 2023 18:43:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 973ab6cd-fef1-4b61-a188-98c52e444fbf X-Archives-Hash: 93284c1fdea605a7d1598204f6d68b53 commit: 3db4bb06b1adab23426a480c18311365ebc3dcc3 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Sep 13 12:22:07 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Sep 13 18:42:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3db4bb06 www-client/chromium: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/32753 Signed-off-by: Conrad Kostecki gentoo.org> www-client/chromium/files/chromium-114-gcc12.patch | 30 ---------------------- 1 file changed, 30 deletions(-) diff --git a/www-client/chromium/files/chromium-114-gcc12.patch b/www-client/chromium/files/chromium-114-gcc12.patch deleted file mode 100644 index 5070135c6117..000000000000 --- a/www-client/chromium/files/chromium-114-gcc12.patch +++ /dev/null @@ -1,30 +0,0 @@ -https://chromium.googlesource.com/chromium/src/+/a1fec6273f3ad7c73b35bb420a5540355df35b74 -controlledframe: Fix start up crash - -This commit applies a fix from mail@maciej.szmigiero.name to prevent a -null reference error in GetControlledFrameFeatureList(). The fix is to -add static to `feature_list` so that the object lives past this -function. - -BUG=1447422 - -Change-Id: I22879831ec879ce7d6a178760540f88106b3ded4 -Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4555985 -Commit-Queue: Ovidio Ruiz-HenrĂ­quez -Reviewed-by: David Roger -Reviewed-by: Chase Phillips -Auto-Submit: Ovidio Ruiz-HenrĂ­quez -Cr-Commit-Position: refs/heads/main@{#1149296} - ---- a/chrome/common/initialize_extensions_client.cc -+++ b/chrome/common/initialize_extensions_client.cc - -@@ -19,7 +19,7 @@ - - // This list should stay in sync with GetExpectedDelegatedFeaturesForTest(). - base::span GetControlledFrameFeatureList() { -- constexpr const char* feature_list[] = { -+ static constexpr const char* feature_list[] = { - "controlledFrameInternal", "chromeWebViewInternal", "guestViewInternal", - "webRequestInternal", "webViewInternal", - };