aboutsummaryrefslogtreecommitdiff
path: root/www/ungoogled-chromium/files/patch-skia_ext_SkMemory__new__handler.cpp
blob: c5d5605f89f85f8c40a7c7e80b8659e9d73dc849 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- skia/ext/SkMemory_new_handler.cpp.orig	2022-10-01 07:40:07 UTC
+++ skia/ext/SkMemory_new_handler.cpp
@@ -79,7 +79,7 @@ static void* malloc_nothrow(size_t size) {
   // TODO(b.kelemen): we should always use UncheckedMalloc but currently it
   // doesn't work as intended everywhere.
   void* result;
-#if BUILDFLAG(IS_IOS)
+#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_BSD)
   result = malloc(size);
 #else
   // It's the responsibility of the caller to check the return value.