mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
Backport patches to fix CVE-2022-32888 and CVE-2022-32923 for webkitgtk 2.36.8. The bugzilla IDs of the CVEs are from https://support.apple.com which have been listed in patch headers. (From OE-Core rev: e24e16974e81a0f62dd6f5862a465fc74ad751d3) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
42 lines
1.5 KiB
Diff
42 lines
1.5 KiB
Diff
CVE: CVE-2022-32888
|
|
Upstream-Status: Backport [https://github.com/WebKit/WebKit/commit/a3dd7dc]
|
|
|
|
[1]: https://support.apple.com/en-us/HT213446
|
|
[2]: https://bugs.webkit.org/show_bug.cgi?id=242047
|
|
|
|
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
|
|
|
From a3dd7dc5f60b87a7cfd14c372e40ebd339076763 Mon Sep 17 00:00:00 2001
|
|
From: Yusuke Suzuki <ysuzuki@apple.com>
|
|
Date: Mon, 27 Jun 2022 21:34:55 -0700
|
|
Subject: [PATCH] [JSC] Drop wasm stale assertion
|
|
https://bugs.webkit.org/show_bug.cgi?id=242047 rdar://95866655
|
|
|
|
Reviewed by Mark Lam.
|
|
|
|
This patch drops stale assertion in addDelegateToUnreachable.
|
|
|
|
* Source/JavaScriptCore/wasm/WasmLLIntGenerator.cpp:
|
|
(JSC::Wasm::LLIntGenerator::addDelegateToUnreachable):
|
|
|
|
Canonical link: https://commits.webkit.org/251902@main
|
|
---
|
|
Source/JavaScriptCore/wasm/WasmLLIntGenerator.cpp | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/Source/JavaScriptCore/wasm/WasmLLIntGenerator.cpp b/Source/JavaScriptCore/wasm/WasmLLIntGenerator.cpp
|
|
index 39fb39b3331f..d0d2b9725991 100644
|
|
--- a/Source/JavaScriptCore/wasm/WasmLLIntGenerator.cpp
|
|
+++ b/Source/JavaScriptCore/wasm/WasmLLIntGenerator.cpp
|
|
@@ -1182,7 +1182,6 @@ auto LLIntGenerator::addDelegateToUnreachable(ControlType& target, ControlType&
|
|
|
|
ControlTry& tryData = std::get<ControlTry>(data);
|
|
m_codeBlock->addExceptionHandler({ HandlerType::Delegate, tryData.m_try->location(), delegateLabel->location(), 0, m_tryDepth, targetDepth });
|
|
- checkConsistency();
|
|
return { };
|
|
}
|
|
|
|
--
|
|
2.34.1
|
|
|