diff --git a/chromium-102-regex_pattern-array.patch b/chromium-102-regex_pattern-array.patch index e2b5e83..944fa3c 100644 --- a/chromium-102-regex_pattern-array.patch +++ b/chromium-102-regex_pattern-array.patch @@ -1,8 +1,6 @@ -Index: chromium-123.0.6312.46/components/autofill/core/browser/BUILD.gn -=================================================================== ---- chromium-123.0.6312.46.orig/components/autofill/core/browser/BUILD.gn -+++ chromium-123.0.6312.46/components/autofill/core/browser/BUILD.gn -@@ -64,6 +64,11 @@ +--- chromium-140.0.7327.6/components/autofill/core/browser/BUILD.gn 2025/08/01 09:33:04 1.1 ++++ chromium-140.0.7327.6/components/autofill/core/browser/BUILD.gn 2025/08/01 09:34:47 +@@ -75,6 +75,11 @@ } static_library("browser") { @@ -12,5 +10,5 @@ Index: chromium-123.0.6312.46/components/autofill/core/browser/BUILD.gn + ] + } sources = [ - "autofill_browser_util.cc", - "autofill_browser_util.h", + "autofill_ai_form_rationalization.cc", + "autofill_ai_form_rationalization.h", diff --git a/chromium.changes b/chromium.changes index 45477e6..5a92a6c 100644 --- a/chromium.changes +++ b/chromium.changes @@ -10,6 +10,8 @@ Fri Aug 1 11:03:29 CEST 2025 - ro@suse.de ppc-fedora-fix-unknown-warning-option-messages.diff ppc-fedora-0001-sandbox-linux-Update-syscall-helpers-lists-for-ppc64.patch ppc-fedora-add-ppc64-architecture-to-extensions.diff + chromium-102-regex_pattern-array.patch + gtk-414.patch - added patches: chromium-140-revert-newline-config.patch (upstream fix 475fa4d21bb8722e9af8e4e707e2adbfd042fd52) diff --git a/gtk-414.patch b/gtk-414.patch index 484f91b..bfc1663 100644 --- a/gtk-414.patch +++ b/gtk-414.patch @@ -110,7 +110,7 @@ index efe6321149679..239fbf4ca69a1 100644 - GdkTexture* texture = GetTextureFromRenderNode(node); size_t nbytes = width * height * sizeof(SkColor); SkColor* pixels = reinterpret_cast(g_malloc(nbytes)); -+ memset(pixels, 0, nbytes); ++ UNSAFE_TODO(memset(pixels, 0, nbytes)); size_t stride = sizeof(SkColor) * width; - gdk_texture_download(texture, reinterpret_cast(pixels), stride); + if (GdkTexture* texture = GetTextureFromRenderNode(node)) { @@ -118,7 +118,7 @@ index efe6321149679..239fbf4ca69a1 100644 + } SkColor fg = GtkStyleContextGetColor(button_context); for (int i = 0; i < width * height; ++i) { - pixels[i] = SkColorSetA(fg, SkColorGetA(pixels[i])); + UNSAFE_TODO(pixels[i]) = @@ -199,7 +201,7 @@ void CalculateUnscaledButtonSize( gfx::Size* button_size, gfx::Insets* button_margin) {