summaryrefslogtreecommitdiff
path: root/dev-qt/qtwebengine/files/qtwebengine-6.9.1-CVE-2025-5419.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-qt/qtwebengine/files/qtwebengine-6.9.1-CVE-2025-5419.patch')
-rw-r--r--dev-qt/qtwebengine/files/qtwebengine-6.9.1-CVE-2025-5419.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.9.1-CVE-2025-5419.patch b/dev-qt/qtwebengine/files/qtwebengine-6.9.1-CVE-2025-5419.patch
deleted file mode 100644
index f42c854f46ca..000000000000
--- a/dev-qt/qtwebengine/files/qtwebengine-6.9.1-CVE-2025-5419.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-https://bugs.gentoo.org/957076
-https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/650558
---- a/src/3rdparty/chromium/v8/src/compiler/turboshaft/store-store-elimination-reducer-inl.h
-+++ b/src/3rdparty/chromium/v8/src/compiler/turboshaft/store-store-elimination-reducer-inl.h
-@@ -325,8 +325,9 @@
- // access once available.
- const bool is_on_heap_store = store.kind.tagged_base;
-- const bool is_field_store = !store.index().valid();
-+ const bool is_fixed_offset_store = !store.index().valid();
- const uint8_t size = store.stored_rep.SizeInBytes();
-- // For now we consider only stores of fields of objects on the heap.
-- if (is_on_heap_store && is_field_store) {
-+ // For now we consider only stores of fixed offsets of objects on the
-+ // heap.
-+ if (is_on_heap_store && is_fixed_offset_store) {
- bool is_eliminable_store = false;
- switch (table_.GetObservability(store.base(), store.offset, size)) {
-@@ -415,9 +416,14 @@
- // access once available.
- const bool is_on_heap_load = load.kind.tagged_base;
-- const bool is_field_load = !load.index().valid();
-+ const bool is_fixed_offset_load = !load.index().valid();
- // For now we consider only loads of fields of objects on the heap.
-- if (is_on_heap_load && is_field_load) {
-- table_.MarkPotentiallyAliasingStoresAsObservable(load.base(),
-- load.offset);
-+ if (is_on_heap_load) {
-+ if (is_fixed_offset_load) {
-+ table_.MarkPotentiallyAliasingStoresAsObservable(load.base(),
-+ load.offset);
-+ } else {
-+ // A dynamically indexed load might alias any fixed offset.
-+ table_.MarkAllStoresAsObservable();
-+ }
- }
- break;