aboutsummaryrefslogtreecommitdiff
path: root/www/qt6-webengine/files/patch-src_3rdparty_chromium_third__party_maldoca_src_maldoca_service_common_process__doc__wrapper.cc
blob: 1124a33989b5f0c24d882108aca1c78be88b86c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--- src/3rdparty/chromium/third_party/maldoca/src/maldoca/service/common/process_doc_wrapper.cc.orig	2023-09-13 12:11:42 UTC
+++ src/3rdparty/chromium/third_party/maldoca/src/maldoca/service/common/process_doc_wrapper.cc
@@ -7,7 +7,7 @@
 #include "build/build_config.h"
 
 #include "base/files/file_util.h"
-#if defined(OS_LINUX)
+#if defined(OS_LINUX) || BUILDFLAG(IS_BSD)
 #include "base/strings/string_util.h"
 #else
 #include "base/strings/string_util_win.h"
@@ -21,7 +21,7 @@ namespace third_party_maldoca {
 
 
 bool ExtensionEqualInCaseSensitive(base::FilePath file_path, std::string extension){
-  #if defined(OS_LINUX)
+  #if defined(OS_LINUX) || BUILDFLAG(IS_BSD)
   std::string file_extension = file_path.FinalExtension();
   return base::CompareCaseInsensitiveASCII(file_extension, extension) == 0;
   #else
@@ -74,7 +74,7 @@ void AnalyzeOfficeDocument(base::File office_file,
   maldoca::DocProcessor doc_processor(processor_config);
 
   maldoca::ProcessDocumentRequest process_doc_request;
-  #if defined(OS_LINUX)
+  #if defined(OS_LINUX) || BUILDFLAG(IS_BSD)
   const std::string file_name = file_path.BaseName().value().c_str();
   process_doc_request.set_file_name(file_name);
   #endif