summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael BrĂ¼ning <michael.bruning@qt.io>2024-02-12 09:20:03 +0100
committerMichael BrĂ¼ning <michael.bruning@qt.io>2024-02-16 22:25:49 +0000
commit42f1f889315424f9341ea9b9cba645f66df8b0eb (patch)
tree838d9db49b321a1ffe827a1c995ac12254d20d7d
parent6f0832285560ce72dfe1403a1c2d7a53f6bf7f55 (diff)
Fixup for [Backport] Security bug 1519980
It was using IS_IOS instead of OS_IOS. IS_IOS was not introduced in Chromium 87 yet. Change-Id: I53c8553f9af6b890baaa938328bd4b8bd336ed22 Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/539289 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
-rw-r--r--chromium/mojo/core/channel_posix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/mojo/core/channel_posix.cc b/chromium/mojo/core/channel_posix.cc
index e17aa8d82a9..11b1eff1538 100644
--- a/chromium/mojo/core/channel_posix.cc
+++ b/chromium/mojo/core/channel_posix.cc
@@ -254,7 +254,7 @@ class ChannelPosix : public Channel,
socket_.reset();
std::ignore = server_.TakePlatformHandle();
}
- #if BUILDFLAG(IS_IOS)
+ #if BUILDFLAG(OS_IOS)
base::AutoLock fd_lock(fds_to_close_lock_);
fds_to_close_.clear();
#endif