- * 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
18 lines
693 B
Diff
18 lines
693 B
Diff
Index: chromium-140.0.7339.41/v8/src/base/immediate-crash.h
|
|
===================================================================
|
|
--- chromium-140.0.7339.41.orig/v8/src/base/immediate-crash.h
|
|
+++ chromium-140.0.7339.41/v8/src/base/immediate-crash.h
|
|
@@ -98,6 +98,13 @@
|
|
#define TRAP_SEQUENCE1_() asm volatile(".2byte 0x0001");
|
|
#define TRAP_SEQUENCE2_() asm volatile("")
|
|
|
|
+#elif V8_HOST_ARCH_PPC64
|
|
+
|
|
+#define TRAP_SEQUENCE1_() asm volatile("trap")
|
|
+// Intentionally empty: __builtin_unreachable() is always part of the sequence
|
|
+// (see IMMEDIATE_CRASH below)
|
|
+#define TRAP_SEQUENCE2_() asm volatile("")
|
|
+
|
|
#else
|
|
|
|
// Crash report accuracy will not be guaranteed on other architectures, but at
|