- * Update to cef-140.1.15+gfaef09b (rhbz#2380429) (Asahi Lina) - * CVE-2025-9864: Use after free in V8 - * CVE-2025-9865: Inappropriate implementation in Toolbar - * CVE-2025-9866: Inappropriate implementation in Extensions - * CVE-2025-9867: Inappropriate implementation in Downloads
13 lines
471 B
Diff
13 lines
471 B
Diff
Index: chromium-140.0.7339.41/base/system/sys_info.cc
|
|
===================================================================
|
|
--- chromium-140.0.7339.41.orig/base/system/sys_info.cc
|
|
+++ chromium-140.0.7339.41/base/system/sys_info.cc
|
|
@@ -254,6 +254,8 @@ std::string SysInfo::ProcessCPUArchitect
|
|
return "ARM";
|
|
#elif defined(ARCH_CPU_ARM64)
|
|
return "ARM_64";
|
|
+#elif defined(ARCH_CPU_PPC64)
|
|
+ return "PPC_64";
|
|
#elif defined(ARCH_CPU_RISCV64)
|
|
return "RISCV_64";
|
|
#else
|