forked from pool/ungoogled-chromium
add MAP_DROPPABLE introduced by recent QT (boo#1238826, boo#1239780) - Chromium 135.0.7049.52 (stable release 2025-04-01) (boo#1240555) * CVE-2025-3066: Use after free in Navigations * CVE-2025-3067: Inappropriate implementation in Custom Tabs * CVE-2025-3068: Inappropriate implementation in Intents * CVE-2025-3069: Inappropriate implementation in Extensions * CVE-2025-3070: Insufficient validation of untrusted input in Extensions * CVE-2025-3071: Inappropriate implementation in Navigations * CVE-2025-3072: Inappropriate implementation in Custom Tabs * CVE-2025-3073: Inappropriate implementation in Autofill * CVE-2025-3074: Inappropriate implementation in Downloads - modified patches: system-libdrm.patch (context update) gcc-enable-lto.patch (context update) chromium-127-constexpr.patch (context update) chromium-norar.patch (context update) - added patches: gtk-414.patch (reverse apply since our gtk4 is too old) - add to keeplibs: third_party/protobuf/third_party/utf8_range - drop from keeplibs: third_party/iccjpeg (gone upstream) - config variable changed from use_qt to use_qt5 - bump buildrequires for gn to 0.20250306 - drop chromium-134-revert-allowlist.patch (obsolete, gn has been updated) - also use nodejs 22 for sle15 OBS-URL: https://build.opensuse.org/package/show/network:chromium/ungoogled-chromium?expand=0&rev=111
17 lines
646 B
Diff
17 lines
646 B
Diff
diff --git a/chrome/browser/safe_browsing/download_protection/file_analyzer.cc b/chrome/browser/safe_browsing/download_protection/file_analyzer.cc
|
|
index 2a930f44908f4..095a1ac913334 100644
|
|
--- a/chrome/browser/safe_browsing/download_protection/file_analyzer.cc
|
|
+++ b/chrome/browser/safe_browsing/download_protection/file_analyzer.cc
|
|
@@ -78,11 +78,6 @@ void FileAnalyzer::Start(const base::FilePath& target_file_name,
|
|
return;
|
|
}
|
|
|
|
- if (inspection_type == DownloadFileType::RAR) {
|
|
- StartExtractRarFeatures();
|
|
- return;
|
|
- }
|
|
-
|
|
#if BUILDFLAG(IS_MAC)
|
|
if (inspection_type == DownloadFileType::DMG) {
|
|
StartExtractDmgFeatures();
|